
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


@font-face {
    font-family: 'Mark';
    src: url('fonts/Mark-Medium.eot');
    src: url('fonts/Mark-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Mark-Medium.woff2') format('woff2'),
        url('fonts/Mark-Medium.woff') format('woff'),
        url('fonts/Mark-Medium.ttf') format('truetype'),
        url('fonts/Mark-Medium.svg#Mark-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'Mark';
    src: url('fonts/Mark-Regular.eot');
    src: url('fonts/Mark-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Mark-Regular.woff2') format('woff2'),
        url('fonts/Mark-Regular.woff') format('woff'),
        url('fonts/Mark-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #94c045;
}

a:hover {
 
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}


.top-header {
	background-color: #050505;
    height: 39px;
    text-align: right;
    color: #fff;
}


.login {
	border: 1px solid #d2d2d2;
    border-radius: 4px;
	padding-left: 10px !important;
    padding-right: 10px !important;
}

.login a{
  color: #000 !important;
}

.top-header .nav-menu ul{
	float: right;
}

.top-header .nav-menu ul li a{
	color:  #fff;
	text-transform: capitalize;
	font-size: 13px;
	
}


.circle-icon {
	background-color: #e21b1f;
    color: #fff;
    display: inline-block;
    width: 23px;
    height: 23px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    left: 10px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #e21b1f;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
 background: #af0e11;
  transition: background 0.2s ease-in-out;
}

#main {
  margin-top: 23px;
  z-index: 3;
  position: relative;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 997;
    transition: all 0.5s;
    background: transparent;
}

#header .logo {
	background: url(../images/logo-bg.png);
    padding-left: 12%;
    width: 480px;
    background-position: left center;
	background-repeat: no-repeat;
}

.fixed-top {
position: absolute;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #384046;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #384046;
  text-decoration: none;
}

#header .logo img {
  max-height: 66px;
}

.menu-container {
	    padding-left: 10%;
		padding-top: 16px;
}

 .whitebg{
	        background-color: #fff !important;
	        box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
	    }

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links a {
  color: #9ba6af;
  padding-left: 8px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

.header-social-links a:hover {
  color: #3498db;
}

@media (max-width: 768px) {
  .header-social-links {
    padding-right: 48px;
  }
  .header-social-links a {
    padding-left: 6px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 12px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.nav-menu a:hover{
	color: #000 !important;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #21262a;
  font-weight: 400;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3498db;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #384046;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #384046;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(33, 38, 42, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/





#hero-newin-solar-word {
    width: 100%;
    height: 400px;
    background: url(../images/new-in-solar-main-banner.jpg) top center;
    background-size: cover;
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
}

#hero-newin-solar-word:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-newin-solar-word .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}


#hero-newin-solar-word:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-newin-solar-word .hero-container {
  position: relative;
  bottom: 0;
  top: 40%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}




#hero-newin-solar-word .hero-container h1{
	font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #fff;
}

#hero-newin-solar-word .hero-container p{
	font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
}


.pt-120 {
    padding-top: 80px;
}

.mb-40 {
    margin-bottom: 40px;
}
.blog-post {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 8%);
}

.blog-content {
    padding: 35px 40px;
}

.post-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 45px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.post-title>a {
    color: #383838;
    transition: .3s;
    font-size: 25px;
    font-family: 'Mark';
}

.post-title>a:hover {
    color: #ff5f1e;
}

.blog-content p {
    color: #262626;
    line-height: 28px;
    margin-bottom: 10px;
    display: block;
    justify-content: space-around;
    font-family: "Poppins", sans-serif;
}

.blog-thumb img {
    width: 55%;
}


.white-space {
	height: 40px;
}


/*residential page*/

@media (min-width: 1024px) {
  #hero {
    /*background-attachment: fixed;*/
  }
}

@media (max-width: 768px) {


}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 0px;
  overflow: hidden;
}





/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/







@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/




/*======= solar page carsouel*/





/*=======*/









/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f7fbfe;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #252324;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3498db;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, .66);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.footer-top .container{
	max-width: 1200px;

}

.copyright {
	 color: rgba(255, 255, 255, .66);
}

#footer .footer-top .usefull {
	    color: rgba(255, 255, 255, .66);
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
    font-size: 15px;
    padding-left: 56px;
    border-left: 1px solid #fff;
}

.footer-phone-icon {
	width: 26px;
	margin-right: 10px;
}

.footer-mail-icon {
	width: 22px;
    margin-right: 10px;
}

#footer .footer-newsletter p {
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid #b6daf2;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #3498db;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #57aae1;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

.footer-newsletter .social-links {
	    margin-top: 52px;
}

#footer .social-links a {
  font-size: 18px;
    display: inline-block;
    background: transparent;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #fff;
}

.footer-bottom {
	background-color: #131212;
}

.footer-bottom a{
	color: rgba(255, 255, 255, .66);
}

.footer-bottom a:hover{
	color: #fff;
}

#footer .social-links a:hover {
  background: #fe5000;
  color: #fff;
  text-decoration: none;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
#hero-newin-solar-word {
	height: 260px;
}


.pt-120 {
    padding-top: 50px;
}
.post-title {
    line-height: 28px;
}
	
.post-title>a{
	font-size: 20px;
	line-height: 28px;
}

.blog-thumb img {
    width: 100%;
}

.blog-content p{
	line-height: 22px;
	font-size: 14px;
}

.blog-list {
	padding-left: 16px;
}

.blog-list  li{
	font-size: 14px;
}
	


#header .logo {
	padding-left: 8%;
    width: 226px;
	background-size: contain;
    position: relative;
    top: -4px;
}

.mobile-nav-toggle i {
    color: #ffffff;
}

#footer .footer-top .usefull {
	text-align: center;
}

#footer .footer-top .footer-links {
	text-align: center;
}

#footer .footer-newsletter {
	text-align: center;
}

#footer .footer-top .footer-links ul li {
	    display: block;
}

#hero-contact {
	height: 270px;
}

.contact-info h2{
	font-size: 16px;
}

.contact-form-title {
	font-size: 22px;
    width: 56%;
}

.contact .php-email-form button[type="submit"] {
	    width: 99%;
}


}



@media only screen and (min-width: 481px) and (max-width: 624px) {
	
#hero-newin-solar-word {
	height: 300px;
}

.pt-120 {
    padding-top: 50px;
}	
	
.post-title {
    line-height: 28px;
}
	
.post-title>a{
	font-size: 20px;
	line-height: 28px;
}

.blog-thumb img {
    width: 100%;
}

.blog-content p{
	line-height: 22px;
	font-size: 14px;
}

.blog-list {
	padding-left: 16px;
}

.blog-list  li{
	font-size: 14px;
}	


#header .logo {
	padding-left: 8%;
    width: 226px;
	background-size: contain;
    position: relative;
    top: -4px;
}

.mobile-nav-toggle i {
    color: #ffffff;
}

#hero h1 {
    font-size: 24px;
    line-height: 30px;
}

#footer .footer-top .footer-links {
	text-align: center;
}

#footer .footer-newsletter {
	text-align: center;
}

#hero-contact {
	height: 270px;
}

.contact-info h2{
	font-size: 16px;
}

.contact-form-title {
	font-size: 22px;
    width: 56%;
}

.contact .php-email-form button[type="submit"] {
	    width: 99%;
}
	
}

@media only screen and (min-width: 640px) and (max-width: 740px)  {
	
#hero-newin-solar-word {
	height: 300px;
}

.pt-120 {
    padding-top: 50px;
}	
	
.post-title {
    line-height: 28px;
}
	
.post-title>a{
	font-size: 20px;
	line-height: 28px;
}

.blog-thumb img {
    width: 100%;
}

.blog-content p{
	line-height: 22px;
	font-size: 14px;
}

.blog-list {
	padding-left: 16px;
}

.blog-list  li{
	font-size: 14px;
}	
	
#hero-contact {
    height: 200px;
}

.contact-info h2 {
    font-size: 22px;
}

.map-section .map {
    height: 340px;
}

#hero-contact {
	height: 270px;
}

.contact-info h2{
	font-size: 16px;
}

.contact-form-title {
	font-size: 22px;
    width: 56%;
}

.contact .php-email-form button[type="submit"] {
	    width: 99%;
}
	
}

@media only screen and (min-width: 741px) and (max-width: 768px)  {
	
#faq h2 {
    font-size: 26px;
}	

#hero {
		height: 550px;
	}
	
	#header .logo {
		    background-size: contain;
			padding-left: 8%;
	}
	
	#footer .footer-newsletter {
	    padding-left: 15px;
}
.contact-info h2 {
	font-size: 24px;
}

.office-address h2 {
    font-size: 16px;
}

.office-address {
    padding: 15px;
}
.office-address p{
	font-size: 15px;
}
.map-section .map {
    height: 340px;
}

.mobile-nav-toggle i {
    color: #fff;
}
	
}




@media only screen and (min-width: 624px) and (max-width: 990px)  {
.mobile-nav-toggle {
		/*top: 58px;*/
	}
	


}

@media only screen and (min-width: 624px) and (max-width: 768px)  {

.logo  {
	position: relative;
    margin-top: -10px;
}

.cta {
    height: auto;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    width: 50%;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
    width: 50%;
}

	
}

@media only screen and (min-width: 769px) and (max-width: 900px)  {

#hero-contact {
    height: 250px;
}

.contact-info h2 {
	font-size: 24px;
}

.office-address h2 {
    font-size: 16px;
}

.office-address {
    padding: 15px;
}
.office-address p{
	font-size: 15px;
}
.map-section .map {
    height: 340px;
}


}

@media only screen and (min-width: 991px) and (max-width: 1024px)  {
#header .logo {
	padding-left: 6%;
	background-size: contain;
}

.nav-menu a {
    font-size: 12px;
}

.circle-icon {
    width: 18px;
    height: 18px;
}
	
}

@media only screen and (min-width: 1280px) and (max-width: 1366px) {
	#header .logo {
		width: 500px;
	}
	
	.menu-container {
    padding-left: 5%;
	}
	
}


@media only screen and (min-width: 1420px) and (max-width: 1440px) {
	#header .logo {
		    width: 473px;
	}
	
}


@media only screen and (min-width: 1640px) and (max-width: 1680px) {
	#header .logo {
		padding-left: 10%;
        width: 378px;
	}
	
	
}

@media only screen and (min-width: 1800px) and (max-width: 1920px) {
	#header .logo {
		    padding-left: 9%;
       
	}
	
	
}






