
/*--------------------------------------------------------------
# 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;
}


/*--------------------------------------------------------------
# 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-understanding {
    width: 100%;
    height: 500px;
    background: url(../images/understanding-banner.jpg) top center;
    background-size: cover;
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
}

#hero-understanding:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-understanding .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-understanding:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-understanding .hero-container {
      position: relative;
      bottom: 0;
      top: 46%;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
}


#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
      color: #eee;
      margin-bottom: 50px;
      font-size: 24px;
}
#about .p1{
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #575757;
    font-family: "Mark";
    text-align:left;
    margin-top: 12px;
}

#about .circle {
    width: 300px;
    height: 300px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 80px;
    position: relative;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    color: white;
    background: url(../images/solar-bussines.jpg);
    background-size: cover;
    position: relative;
}
#about .circle:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border: 10px solid #e21b1f;
    border-left: 0;
    border-bottom-right-radius: 154px;
    border-top-right-radius: 154px;
    width: 160px;
    height: calc(100% + 30px);
    transform: translate(15px, -16px);
}

/*partner page*/

#hero-understanding .hero-container h1{
	  font-family: 'Mark';
      font-weight: 700;
      font-size: 30px;
     color: #fff;
}



.understanding-info {
	font-family: 'Mark';
    font-weight: 300;
    font-size: 18px;
    color: #000000;
    text-align: left;
    padding-top: 0px;
    background-color: #fff;
    margin-top: 4%;
    padding-bottom: 30px;
}

.understanding-info p{
	color: #232323;
	text-align: center;
}

.solar-types {
	background-color: #e3e3e3;
    position: relative;
    height: 61px;
    width: 80%;
    margin: 0px auto;
}

.solar-types p{
	color: #232323;
    text-align: center;
	font-family: 'Mark';
	line-height: 60px;
    font-weight: 600;
	font-size: 16px;
	margin-bottom: 14px;
}

.solar-types:after {
    content: "";
    width: 33px;
    height: 62px;
    background: url(../images/right-angle.png);
    background-color: transparent;
    top: 0px;
    right: -26px;
    position: absolute;
    display: inline-block;
  
}

.solar-types:before {
    content: "";
    width: 33px;
    height: 62px;
    background: url(../images/left-angle.png);
    background-color: transparent;
    top: 0px;
    left: -26px;
    position: absolute;
    display: inline-block;
  
}

.solution-type {
	display: flex;
	padding-top: 24px;
}

.sol-info {
	padding-left: 20px;
}

.sol-num img{
   width: 54px;
}

.sol-info p{
	font-family: 'Mark';
	font-size: 17px;
	color: #232323;
	margin: 0px;
}

.understanding-info h2{
	font-family: 'Mark';
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0px;
    line-height: 45px;
    color: #ff5f1e;
    text-align: center;
}
.light-energy {
	font-family: 'Mark';
    font-weight: 300;
    font-size: 18px;
    color: #000000;
	
    padding-top: 30px;
}

.light-energy h2{
	font-family: 'Mark';
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #ff5f1e;
    text-align: left;
	text-transform: uppercase;
}


.partner-form {
	width: 60%;
    margin: 0px auto;
	padding-top: 30px;
    padding-bottom: 30px;
}

.partner-form select{
	width: 100%;
    height: 40px;
    border-radius: 5px;
    padding-left: 8px;
}
.partner-title {
	color: #e21b1f;
	font-family: 'Mark';
    font-weight: 600;
	font-size: 22px;
	text-align: center;
}

.red-divider {
	border-top: 3px solid #e21b1f;
}

.partner-name {
	color: #2c2c2c;
    font-family: 'Mark';
    font-weight: 600;
    font-size: 20px;
}

.partner-box {
	margin-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #616060;
	height: 225px;
}

.partner-subname {
	color: #2c2c2c;
    font-family: 'Mark';
    font-weight: 500;
    font-size: 18px;
}

.partner-phone {
	font-family: 'Mark';
	font-size: 16px;
	color: #2c2c2c;
}

.partner-phone i{
	color: #e21b1f;
	font-size: 30px;
	float: left;
	margin-right: 10px;
}

.partner-address i{
	color: #e21b1f;
	font-size: 30px;
	float: left;
	margin-right: 10px;
}

.partner-address{
	font-family: 'Mark';
	font-size: 16px;
	color: #2c2c2c;
}

.white-space {
	height: 40px;
}


/*residential page*/

@media (min-width: 1024px) {
  #hero {
    /*background-attachment: fixed;*/
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 0px;
  overflow: hidden;
}

.section-bg {
  background-color: #eeeef0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #646c55;
}

.section-title p {
  margin-bottom: 0;
}


/*testimonila css*/



.module {
	padding-top: 10px;
    padding-bottom: 10px;
}

.module p{
   font-family: 'Mark';
    font-size: 18px;
    color: #232323;
    
}

.madule-point-1 {
	font-family: 'Mark';
    font-size: 18px;
    color: #232323;
    font-weight: 500;
}

.madule-point-2{
	font-family: 'Mark';
    font-size: 18px;
    color: #232323;
    font-weight: 500;
	padding-left: 60px;
}

.madule-point-3 {
	font-family: 'Mark';
    font-size: 18px;
    color: #232323;
    font-weight: 500;
	padding-left: 60px;
}

.module .title{
	font-family: 'Mark';
    font-size: 17px;
    color: #232323;
    font-weight: bold;
    text-transform: uppercase;
}


.module-img-box {
	    margin-top: -40px;
}

.solar-inverter-info p {
     font-family: 'Mark';
    font-size: 18px;
    color: #232323;	
}

.solar-inverter-info h2 {
	font-family: 'Mark';
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #ff5f1e;
    text-align: left;
    text-transform: uppercase;
}

.recomend-section {
	background: url(../images/recomendation-bg.jpg) top center;
    background-size: cover;
	height: 448px;
}

.recomend-info {
	color: #232323;
    text-align: center;
	padding-top: 90px;
}

.recomend-info p{
	font-family: 'Mark';
	 color: #232323;
    text-align: center;
	font-size: 18px;
	margin-top: 20px;
}

.recomend-info h2{
	font-family: 'Mark';
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #ff5f1e;
    text-align: center;
    text-transform: uppercase;
}

.battery-module {
	padding-top: 70px;
    display: flex;
    flex-direction: row-reverse;
}

.module-img-box img{
	width:  100%;
}


.getintouch {
	padding-top: 15px;
	padding-bottom: 0px;
}

.get-touch-left {
	background-color: #e21b1f;
}

.get-touch-right {
	background-color: #f4f6f9;
}

.touch-left-inner {
	padding: 40px 60px 60px 40px;
    color: #fff;
    font-family: 'Mark';
}
.touch-left-inner p{
	font-size: 20px;
	margin-bottom: 80px;
}

.touch-right-inner {
	padding: 40px 60px 60px 40px;
}



.get-left-title {
	color: #fff;
	font-family: 'Mark';
	font-size: 22px;
    font-weight: 100;
}

.underline-white {
	border-top: 3px solid #fff;
    width: 100px;
    float: left;
    margin-top: 0;
}

.get-tuch-num {
	color: #fff;
    font-family: 'Mark';
    font-size: 35px;
    font-weight: 300;
    clear: both;
    margin-top: 140px;
}

.call-professional {
	color: #e21b1f;
	font-size: 23px;
}





/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
}

.breadcrumbs .breadcrumb-hero {
  text-align: center;
  background: #94c045;
  padding: 20px 0;
  color: #fff;
}

.breadcrumbs .breadcrumb-hero h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-hero p {
  font-size: 14px;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565e49;
  content: "/";
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


.catlog-btn .more-infotext{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin: 0px auto;
    display: block;
    color: #232323;
    margin-top: 22px;
    font-family: 'Mark';
}
.catlog-btn .catelog-button {
    text-align: center;
    color: #fff;
    font-family: 'Mark';
    font-size: 16px;
    margin-bottom: 0px;
}
.catlog-btn .catelog-button  .download-btn a {
    background-color: #fff;
    display: inline-block;
    color: #fe5000;
    width: auto;
    height: 32px;
    margin: 0 0 0 15px;
    font-weight: 500;
    border-radius: 24px;
    padding: 4px 15px 0 15px;
    border: 1px solid #fe5000;
}

.catlog-btn .catelog-button  .download-btn a:hover {
    background-color: #fe5000;
    color: #fff;
}


.partner-content {
	background-color: #ffffff;
}
 .p-shadow {
      width: 100%;
      height: 114px;
      background: url(../images/partner-shadow.jpg) top center;
      background-size: cover;
       position: relative;
    }


.partner-content .container{
  background: #efefef;
    position: relative;
    max-width: 1140px;
    border-radius: 0px;
    box-shadow: none;
}


.solar-content {
	background-color: #fff;
	padding: 0px;
	display: flex;
	position: relative;
}

.panel-capsule{
	position: absolute;
    right: -48px;
    top: 50px;
    text-align: right;
    padding-top: 50px;
}

.panel-capsule img{
	width: 80%;
}

.solar-content .container{
  background: #fff;
    position: relative;
    max-width: 1140px;
    border-radius: 0px;
    box-shadow: none;
}

.services .icon-box h4{
	color: #000000;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.our-solution {
	padding-top: 30px;
}

.our-solution .services {
    padding-top: 20px;
    padding-bottom: 0px;
}
#our-solution .icon-box {
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    margin: 0 0px 40px 0px;
    background: #ffffff;
    text-align: center;
    border: 1px solid #dfdfdf;
    height: 224px;
}

.grey-bg {
	background-color: #f7f7f7;
	padding-top: 30px;
    padding-bottom: 30px;
}

#our-solution .icon-box:hover{
	box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
}

#our-solution .icon-box p{
	font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
    color: #575757;
    font-family: "Mark";
    text-align: center;
	margin-top: 10px;
}

#our-solution .icon {
    position: relative;
    padding-right: 0px;
    text-align: center;
}

#our-solution .icon img {
    width: 100px;
}
#our-solution .icon-box h4 {
    font-size: 18px;
letter-spacing: 0px;
line-height: 26px;
color: #282828;
font-family: "Mark";
text-align: center;
}

.pservices {
    padding-top: 40px;
    padding-bottom: 0px;
}
#pro-partner .icon-box {
    padding: 0px;
    position: relative;
    overflow: hidden;
    margin: 0 0px 40px 0px;
    background: #fff;
    text-align: center;
}

#pro-partner .icon-box-2 {
    padding: 0px;
    position: relative;
    overflow: hidden;
    margin: 0 0px 40px 0px;
    background: transparent;
    text-align: center;
}

#pro-partner .icon-box-2 h4 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #282828;
    font-family: "Mark";
    text-align: center;
    margin-top: 10px;
}

#pro-partner .icon {
    position: relative;
    padding-right: 0px;
    text-align: center;
    border: 1px solid #bdbdbd;
}

#pro-partner .icon img {
    width: 100%;
}
#pro-partner .icon-box h4 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #282828;
    font-family: "Mark";
    text-align: center;
    margin-top: 10px;
}


.tabs {
    max-width: 700px;
    margin: 0px auto;
}
.chat-us {
    background-color: #ff5f1e;
    padding: 13px 25px 13px 25px;
    color: #fff;
    font-size: 20px;
	font-size: 16px;
	font-family: "Mark";
}
.chat-us:hover {
    background-color: #000;
    color: #fff;
}
.chat-us1 {
    background-color: #ff5f1e;
    padding: 13px 25px 13px 25px;
    color: #fff;
    font-size: 20px;
	font-size: 16px;
	font-family: "Mark"
}
.chat-us1:hover {
    background-color: #000;
    color: #fff;
}
.form-box {
    background-color: #fff;
    padding-top:50px;
    padding: 40px 60px 20px 50px;
	box-shadow: 0 1px 20px 0 rgba(32, 33, 36, .28);
}
 .php-email-form {
    width: 100%;
}
.form-info{
   font-family: 'Mark';
    font-weight: 800;
    font-size: 36px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #e21b1e; 
    text-align:center;
    padding-bottom:20px;
    
}
.form-box .form-control {
	    width: 94%;
}
.form-box .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ff5f1e;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0,123,255,.25);
}

.form-box input {
	border-bottom: 1px solid #aeacac;
    border-top: 0px;
    border-left: 0px;
	border-right: 0px;
    border-radius: 0px;
}


.form-box select {
	border-bottom: 1px solid #aeacac;
    border-top: 0px;
    border-left: 0px;
	border-right: 0px;
    border-radius: 0px;
}

.form-box textarea {
	border-bottom: 1px solid #aeacac;
    border-top: 0px;
    border-left: 0px;
	border-right: 0px;
    border-radius: 0px;
	height: 64px;
}

.captcha-field {
	width: 74% !important;
    float: left;
}

.capcha-code {
	float: left;
	margin-top: 8px;
}

.form-info h2 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
	color: #ff5f1e;
	font-family: "Mark";
    font-weight: 600;
    font-size: 30px;
}

.form-info h2:before,
.form-info h2:after {
    content: '';
    border-top: 4px solid #ff5f1e;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}

.form-info h2:after {
    margin: 0 0 0 20px;
}
 .php-email-form button[type="submit"] {
    background: #380d0d;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
.php-email-form button[type="submit"]:hover {
    background: #ff5f1e;
}
#footer .contact-box {
    background-color: #e21b1f;
    height: 170px;
    position: relative;
    z-index: 100;
    margin-top: -142px;
    margin-bottom: 40px;
    margin-left: -15px;
    background: url(../images/home-contact-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
}
#footer .call-profession {
    font-family: 'Mark';
    font-size: 26px;
    font-weight: 700;
}
#footer .call-num {
    font-family: 'Mark';
    font-size: 32px;
    font-weight: 300;
}
@-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*/





/*=======*/



/* Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Content */
.modal-content {
    position: fixed;
    background-color: #fefefe;
    width: 88%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    left: 0;
    right: 0;
    margin: 0px auto;
    top: 6%;
}

/* Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close1 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close1:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close1:hover{
    opacity: 1;
    color: #fff;
}


/* Close Button */
.close3 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close3:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close3:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close4 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close4:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close4:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close5 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close5:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close5:hover{
    opacity: 1;
    color: #fff;
}


/* Close Button */
.close6 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close6:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close6:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close7 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close7:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close7:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close8 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close8:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close8:hover{
    opacity: 1;
    color: #fff;
}


/* Close Button */
.close9 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close9:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close9:hover{
    opacity: 1;
    color: #fff;
}


/* Close Button */
.close10 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close10:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close10:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close11 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close11:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close11:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close12 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close12:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close12:hover{
    opacity: 1;
    color: #fff;
}


/* Close Button */
.close13 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close13:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close13:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close14 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close14:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close14:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close15 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close15:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close15:hover{
    opacity: 1;
    color: #fff;
}

/* Close Button */
.close16 {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 13px;
    right: -12px;
    background-color: #000;
    padding: 0px !important;
    opacity: 1;
    width: 30px;
    text-align: center;
    height: 30px;
    margin: -1rem -1rem -1rem auto;
    line-height: 30px;
}

.close16:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close16:hover{
    opacity: 1;
    color: #fff;
}

.modal-header {
    padding: 20px 10px;
    background-color: #fff;
    color: #676565;
    position: relative;
    border-bottom: 0px solid #dee2e6;
    text-align: center;
}

.modal-header h2{
    font-size: 20px;
    font-weight: 600;
     font-family: 'Mark';
}

.modal-body {
    padding: 0;
    background-color: #7b7b78;
}

.pop-content {
    padding: 15px 25px 15px 25px;
    display: flex;
}

.popup-info-1 {
    width: 60%;
}

.popup-info-r {
    width: 100%;
}

.popup-info-2 {
    width: 40%;
}

.modal-body  .pop-content h3{
    font-family: 'Mark';
    font-weight: 600;
    color: #29bdbc;
    font-size: 18px;
    font-weight: 600;
}

.modal-body  .pop-content p{
    font-family: 'Mark';
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Animation 
@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0}     
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
/* End Modal */

.pop-up-banner {
    width: 100%;
}

.pop-up-banner img {
    width: 100%;
    
}



.inner-img {
  transition: 0.3s;
  cursor: pointer;
}

.inner-img:hover {
  transform: scale(1.1);
}

.im-1 {
    overflow: hidden; 
}





/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #94c045;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f6e5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3c4133;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #717a60;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #94c045;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #e21b1f;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    width: 100%;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #000;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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;
}
.calculate-btn a{
	background-color: #fff;
    display: inline-block;
    color: #e21b1f;
    width: 135px;
    height: 32px;
    margin: 0 0 0 15px;
    font-weight: 500;
    border-radius: 24px;
	
}

.calculate-btn a:hover {
    background-color: #000;
    color: #fff;
}

.fixed-stip {
	background-color: #e21b1f;
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 500;
    bottom: 0px;
	font-family: 'Mark';
	color: #fff;
	padding-top: 15px;
	text-align: center;
	font-size: 20px;
}

.module-img-box-mibile{
    display: none;
}

.inverter-m{
    display: none;
}

.solar-battery-m{
    display: none;
}

@media only screen and (min-width: 320px) and (max-width: 350px)  {
.chat-us {
     padding: 13px 6px 13px 6px !important;
     font-size: 15px !important;
}
}
@media only screen and (min-width: 320px) and (max-width: 480px)  {
    
.catlog-btn .catelog-button .download-btn a{
        margin-top: 10px;
        font-size: 14px;
}    
	
.top-header {
    height: 90px;
	}

#hero-understanding {
    width: 100%;
    height: 280px;
    background: url(../images/solar-understanding-mobile-banner.jpg) top center;
    background-size: cover;
    background-position: 66% 0%;
    
}

.module-img-box-mibile{
    display: block;
}

.module-img-box-mibile img{
    width: 100%;
}

.inverter-d{
    display: none;
}

.inverter-m{
    display: block;
    width: 100%;
    margin-bottom: 12px;
}

.solar-battery-m{
    display: block;
    width: 100%;
    margin-bottom: 12px;
}

.solar-battery{
    display: none;
}

.module-img-box{
    display: none;
}

.solar-types:before{
    left: -33px;
}

.solar-types:after{
        right: -33px;
}

#hero-understanding .hero-container h1{
   font-size: 24px; 
}

.understanding-info h2 {
	    font-size: 24px;
}

.solar-types p {
  font-size: 12px;
  line-height: 16px;
}

.solar-types {
	 padding-top: 10px;
}

.understanding-info {
	    font-size: 16px;
}

.sol-info p {
    font-size: 16px;
}

.light-energy h2{
	font-size: 20px;
}

.module .title {
    font-size: 16px;
}

.module p {
    font-size: 16px;
}

.madule-point-1 {
	font-size: 15px;
}

.madule-point-2 {
	font-size: 15px;
	padding-left: 4px;
}

.madule-point-3 {
	font-size: 15px;
	padding-left: 4px;
}

.module-img-box {
    margin-top: 10px;	
}

.inverter-m {
	width: 100%;
	
}

.solar-inverter-info {
	    padding-top: 26px;
}

.solar-inverter-info h2 {
	font-size: 22px;
}

.solar-battery {
	width:  100%;
}

.solar-inverter-info p {
	    font-size: 16px;
}

.recomend-info h2 {
	font-size: 22px;
}

.recomend-info {
	 padding-top: 34px;
}

.recomend-info p {
	font-size: 16px;
    margin-top: 10px;
}

.recomend-section {
	    height: 476px;
}

#footer .footer-newsletter {
	padding-left: 18px;
    border-left: 0px solid #fff;
}
	
#header .logo {
    padding-left: 8%;
    width: 226px;
    background-size: contain;
    position: relative;
    top: -4px;
}

.mobile-nav-toggle i {
    color: #ffffff;
}

.solar-content {
	    flex-direction: column;
}

.partner-info{
	 width: 100%;
}

.panel-capsule {
    position: relative;
    right: -1px;
    top: -36px;
    text-align: right;
    padding-top: 0px;
}	

.pop-up-banner img {
    width: 100%;
    /*height: 130px;*/
}    

.modal-body .pop-content p {
    font-size: 13px;
}    
    
.chat-us1 {
     padding: 13px 6px 13px 6px !important;
     font-size: 15px !important;
}
.top-header {
    height: 90px;
	}
.top-header .nav-menu ul li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 12px;
    padding: 10px 7px;
}

#hero-partner {
    height: 250px;
}

.cta {
     height: auto;
}


.partner-info h2 {
    font-size: 24px;
}


.fixed-stip {
   height: 80px;
   font-size: 14px;
}

.calculate-btn a {
	padding: 7px 0 0 0;
}

.back-to-top {
	bottom: 0px;
}

.partner-form {
    width: 100%;
	padding-top: 5px;
}

.partner-form select {
    padding-left: 8px;
    margin-top: 15px;
}



.touch-left-inner {
    padding: 40px 22px 60px 22px;
}

.touch-right-inner {
    padding: 40px 22px 60px 22px;
}

#footer .footer-top {
    background: #252323;
    padding: 60px 0 30px 26px;
}

.get-left-title {
    font-size: 20px;
}

.get-tuch-num {
    font-size: 26px;
}

.testimonilal-title {
	font-size: 20px;
}

}

@media only screen and (min-width: 481px) and (max-width: 640px)  {
.catlog-btn .catelog-button .download-btn a{
        margin-top: 10px;
        font-size: 14px;
}    
    
#hero-understanding {
    width: 100%;
    height: 280px;
}

.understanding-info h2 {
	    font-size: 24px;
}

.solar-types p {
  font-size: 12px;
  line-height: 16px;
}

.solar-types {
	 padding-top: 10px;
}

.understanding-info {
	    font-size: 16px;
}

.sol-info p {
    font-size: 16px;
}

.light-energy h2{
	font-size: 20px;
}

.module .title {
    font-size: 16px;
}

.module p {
    font-size: 16px;
}

.madule-point-1 {
	font-size: 15px;
}

.madule-point-2 {
	font-size: 15px;
	padding-left: 4px;
}

.madule-point-3 {
	font-size: 15px;
	padding-left: 4px;
}

.module-img-box {
    margin-top: 10px;	
}

.inverter-m {
	width: 100%;
	
}

.solar-inverter-info {
	    padding-top: 26px;
}

.solar-inverter-info h2 {
	font-size: 22px;
}

.solar-battery {
	width:  100%;
}

.solar-inverter-info p {
	    font-size: 16px;
}

.recomend-info h2 {
	font-size: 22px;
}

.recomend-info {
	 padding-top: 34px;
}

.recomend-info p {
	font-size: 16px;
    margin-top: 10px;
}

.recomend-section {
	    height: 476px;
}

#footer .footer-newsletter {
	padding-left: 18px;
    border-left: 0px solid #fff;
}

.partner-form {
    padding-top: 10px;
}
.partner-form select {
   margin-top: 15px;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
    width: 50%;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
    width: 50%;
}
.mobile-nav-toggle {
   top: 60px;
}

.pop-up-banner img {
    width: 100%;
} 

.modal-body .pop-content p {
    font-size: 13px;
} 
	
}

@media only screen and (min-width: 640px) and (max-width: 740px)  {
#hero-understanding {
    width: 100%;
    height: 280px;
}

.understanding-info h2 {
	    font-size: 24px;
}

.inverter-d{
    width: 100%;
}

.solar-types p {
  font-size: 12px;
  line-height: 16px;
}

.solar-types {
	 padding-top: 10px;
}

.understanding-info {
	    font-size: 16px;
}

.sol-info p {
    font-size: 16px;
}

.light-energy h2{
	font-size: 20px;
}

.module .title {
    font-size: 16px;
}

.module p {
    font-size: 16px;
}

.madule-point-1 {
	font-size: 15px;
}

.madule-point-2 {
	font-size: 15px;
	padding-left: 4px;
}

.madule-point-3 {
	font-size: 15px;
	padding-left: 4px;
}

.module-img-box {
    margin-top: 10px;	
}

.inverter-m {
	width: 100%;
	
}

.solar-inverter-info {
	    padding-top: 26px;
}

.solar-inverter-info h2 {
	font-size: 22px;
}

.solar-battery {
	width:  100%;
}

.solar-inverter-info p {
	    font-size: 16px;
}

.recomend-info h2 {
	font-size: 22px;
}

.recomend-info {
	 padding-top: 34px;
}

.recomend-info p {
	font-size: 16px;
    margin-top: 10px;
}

.recomend-section {
	    height: 476px;
}

#footer .footer-newsletter {
	padding-left: 18px;
    border-left: 0px solid #fff;
}

.partner-form {
    padding-top: 10px;
}
.partner-form select {
   margin-top: 15px;
}
.pop-up-banner img {
    width: 100%;
}

.modal-body .pop-content p {
    font-size: 13px;
} 
	
}

@media only screen and (min-width: 741px) and (max-width: 768px)  {
#hero-understanding {
    width: 100%;
    height: 280px;
}

.understanding-info h2 {
	    font-size: 24px;
}

.inverter-d{
    width: 100%;
}

.solar-types p {
  font-size: 12px;
  line-height: 16px;
}

.solar-types {
	 padding-top: 10px;
}

.understanding-info {
	    font-size: 16px;
}

.sol-info p {
    font-size: 16px;
}

.light-energy h2{
	font-size: 20px;
}

.module .title {
    font-size: 16px;
}

.module p {
    font-size: 16px;
}

.madule-point-1 {
	font-size: 15px;
}

.madule-point-2 {
	font-size: 15px;
	padding-left: 4px;
}

.madule-point-3 {
	font-size: 15px;
	padding-left: 4px;
}

.module-img-box {
    margin-top: 10px;	
}

.inverter-m {
	width: 100%;
	
}

.solar-inverter-info {
	    padding-top: 26px;
}

.solar-inverter-info h2 {
	font-size: 22px;
}

.solar-battery {
	width:  100%;
}

.solar-inverter-info p {
	    font-size: 16px;
}

.recomend-info h2 {
	font-size: 22px;
}

.recomend-info {
	     padding-top: 96px;
}

.recomend-info p {
	font-size: 16px;
    margin-top: 10px;
}

.recomend-section {
	    height: 476px;
}

#footer .footer-newsletter {
	padding-left: 18px;
    border-left: 0px solid #fff;
}
	
.solar-content {
	    flex-direction: column;
}

#header .logo {
    background-size: contain;
    padding-left: 8%;
}

.partner-info{
	 width: 100%;
}

.panel-capsule {
    position: relative;
    right: -1px;
    top: -36px;
    text-align: right;
    padding-top: 0px;
}		
	
#hero-partner {
    height: 250px;
}
.partner-name {
    font-size: 15px;
}
.pop-up-banner img {
    width: 100%;
} 

.partner-address {
    font-family: 'Mark';
    font-size: 14px;
}

.partner-phone {
    font-size: 14px;
}

.modal-body .pop-content p {
    font-size: 13px;
}

.mobile-nav-toggle i {
    color: #fefefe;
}

.partner-info h2 {
	font-size: 26px;
	line-height: 32px;
}

.solution-info h2 {
	    font-size: 26px;
} 
	
}




@media only screen and (min-width: 624px) and (max-width: 990px)  {
.mobile-nav-toggle {
		top: 20px;
	}
	
.count-box img{
	width: 64px;
}

.about .count-box p {
	font-size: 12px;
}

}
@media only screen and (min-width: 351px) and (max-width: 767px)  {
    .chat-us {
     padding: 13px 6px 13px 6px !important;
     font-size: 18px !important;
}
.chat-us1 {
     padding: 13px 6px 13px 6px !important;
     font-size: 18px !important;
}
}
@media (max-width: 767px) {
    #about .circle {
   margin-left: 0px !important;
}
#hero-partner .hero-container h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px !important;
    color: #fff;
}
#hero-partner .hero-container {
    top: 24% !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 10px !important;
}
#footer .contact-box {
    height: auto !important;
    position: relative;
    margin-bottom: 26px !important;
    margin-left: -15px;
    background: url(../images/home-contact-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 26px !important;
}
#about .p1 {
    text-align: center !important;
    margin-top: 16px !important;
}
.form-box {
    background-color: #fff;
    padding: 13px 6px 13px 6px !important;
     
}
.partner-info h2 {
    font-size: 24px;
    line-height: 30px !important;
}
.solution-info h2 {
    
    font-size:24px;
    line-height: 30px !important;
}

.form-info h2{
    font-size:24px !important;
    width: 100% !important;;
}
#partnerform .text-right {
    text-align: center!important;
    margin-bottom: 36px;
}
#partnerform .text-left {
    text-align: center!important;
}
}

@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-partner {
    width: 100%;
    height: 260px;
}

.partner-name {
    font-size: 15px;
}

.partner-address {
    font-family: 'Mark';
    font-size: 14px;
}

.partner-phone {
    font-size: 14px;
}

}

@media only screen and (min-width: 991px) and (max-width: 1024px)  {
#hero-partner {
    width: 100%;
    height: 350px;
}

.nav-menu a {
    font-size: 12px;
}

.circle-icon {
    width: 18px;
    height: 18px;
}
.panel-capsule img {
    width: 60%;
}

#header .logo {
	padding-left: 6%;
	background-size: contain;
}
	
}






