
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/



.about-title {
	text-align: center;
    color: #ff5f1e;
    font-family: 'Mark';
    font-weight: 600;
    font-size: 34px;
	margin-top: 48px;
}

#hero-about {
    width: 100%;
    height: 500px;
    background: url(../images/about-banner.jpg) top center;
    background-size: cover;
    position: relative;
    margin-bottom: 0px;
    z-index: 1;
}

#hero-about:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-about .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-about:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-about .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 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;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #94c045;
  text-transform: uppercase;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #94c045;
}


/*about page*/

#hero-about .hero-container h1{
	font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #fff;
}

.vision-thumb {
	border: 1px solid #d1d0d0;
}

.border-bx {
	border: 1px solid #d1d0d0;
}

.vision-thumb img{
	width: 100%;
}


.about-info {
	font-family: 'Mark';
    font-weight: 300;
    font-size: 18px;
    color: #2c2c2c;
    text-align: center;
    padding-top: 30px;
}

.vision-box {
	margin: 0px auto;
    width: 100%;
    text-align: center;
    margin-top: 24px;
}


.vision-section {
	width: 100%;
    height: 368px;
    position: relative;
    margin-bottom: 0px;
    padding-top: 30px;
}

.vision-box p{
	font-family: 'Mark';
    font-weight: 300;
    font-size: 16px;
    color: #000000;
    text-align: left;
}

.vison-icon {
	width: 100px;
    height: 120px;
    text-align: left;
}

.vision-title{
	color: #ff5f1e;
    font-family: 'Mark';
    font-size: 28px;
    font-weight: 600;
	text-align: left;
}

.leadership {
	padding-top: 60px;
    padding-bottom: 60px;
}

.leading-sub {
    text-align: center;
    margin-bottom: 0px;
    font-family: 'Mark';
    font-size: 20px;
}

.circle-learder {
	width: 214px;
    height: 214px;
    border-radius: 0%;
    border-top: 5px solid #ff5f1e;
	margin: 0px auto;
}

.circle-learder:after {
    content: "";
    position: absolute;
    right: 30px;
    z-index: 100;
    top: 0;
    width: 5px;
    height: 40%;
    background: #ff5f1e;
}

.circle-learder:before {
    content: "";
    position: absolute;
    left: 30px;
    z-index: 100;
    top: 0;
    width: 5px;
    height: 40%;
    background: #ff5f1e;
}

.circle-learder img{
	width: 214px !important;
    height: 214px !important;
    border-radius: 0%;
}

.leadername {
	font-family: 'Mark';
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
}

.leaderdesignation {
	font-family: 'Mark';
    font-size: 15px;
    margin-top: 15px;
    text-align: center;
}

.leader-info {
	width: 80%;
    margin: 0px auto;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
	font-family: 'Mark';
    font-weight: 300;
    font-size: 18px;
    color: #000000;
}

.leader-carousel .owl-dots{
	display: block !important;
    text-align: center;
	
}

.leader-carousel button.owl-dot {
    background: #000;
    color: inherit;
    border: 1px solid #000;
    padding: 0!important;
    font: inherit;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.leader-carousel button.active {
	width:30px;
	border-radius: 10px;
	background: #ff5f1e;
    border: 1px solid #ff5f1e;
	margin-left: 5px;
	margin-right: 5px;
}

.values-section {
	background-color: #f3f3f3;
	padding-top: 30px;
	padding-bottom: 30px;
	background: url(../images/values-bg.jpg);
	background-size: cover;
	background-position: center;
}

.values-box {
	background-color: transparent;
    height: 398px;
    width: 950px;
    border-radius: 0;
    margin: 0px auto;
    padding: 20px;
}

.value-left-logo {
	width: 100%;
    padding-left: 34px;
    padding-top: 41px;
	margin-top: 11px;
}

.value-left-logo img{
	width: 236px;
    height: 230px;
    border-radius: 50%;
    text-align: center;
	border: 3px solid #fff;
}

.values-box {
	color: #fff;
}

.values-box h2{
	font-family: 'Mark';
	font-size: 22px;
	font-weight: 600;
}

.values-box h3{
	font-family: 'Mark';
	font-size: 30px;
	font-weight: 400;
}

.value-right {
	padding-left: 30px;
    padding-top: 36px;
}

.value-right ul{
	padding-left: 0px;
}

.value-right ul li{
	list-style: none;
	padding-left: 0px;
	margin-top: 10px;
	font-family: 'Mark';
	font-size: 18px;
}


.global-reach-section {
	height: 530px;
	background: url(../images/global-reach-bg.jpg);
    position: relative;
	background-position: left;
    background-repeat: no-repeat;
	padding-top: 64px;
    padding-bottom: 30px;
	
}

.global-reach-left h2{
	color: #ff5f1e;
	font-family: 'Mark';
	font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.global-reach-left p{
	padding: 20px 0 0 0;
	font-family: 'Mark';
	font-size: 18px;
}
.global-reach-left{
padding-bottom: 90px;
    border-right: 1px solid #bdbcbc;
}

.global-reach-right {
	padding-left: 3%;
}

.global-reach-right h2{
	color: #ff5f1e;
	font-family: 'Mark';
	font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
	margin-bottom: 18px;
}

.global-reach-right p {
    padding: 0px 0 0 0;
    font-family: 'Mark';
    font-size: 18px;
}

.sar-logo {
	float: left;
}

.sar-logo img{
	width: 220px;
}


.explore-sar a{
	color: #000000;
	font-family: 'Mark';
    font-size: 18px;
}

.explore-sar i {
	color: #ff5f1e;
    position: relative;
    top: 3px;
}

/*residential page*/

@media (min-width: 1024px) {
  #hero {
    /*background-attachment: fixed;*/
  }
}

@media (max-width: 768px) {


}

/*--------------------------------------------------------------
# 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*/



.testimonilal-title {
	text-align: center;
    margin-top: 0px;
    color: #ff5f1e;
    font-family: 'Mark';
    font-weight: 600;
    font-size: 30px;
}

/*.testimonilal-title:before {
    background: url(../images/angle-1.png);
    content: "";
    width: 26px;
    height: 27px;
    position: absolute;
    margin: 0 0 0 -40px;
 }
 
 .testimonilal-title:after {
    background: url(../images/angle-2.png);
    content: "";
    width: 26px;
    height: 27px;
    position: absolute;
    margin: 20px 0 0 20px;
 }*/

 



.services {
	padding-top: 40px;
	padding-bottom: 40px;
}

.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;
}

.chat-us {
	background-color: #000;
    padding: 13px 25px 13px 25px;
    color: #fff;
	font-size:20px;
}

.chat-us:hover{
    color: #fff;
}

.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
--------------------------------------------------------------*/


.solar-content {
	background-color: #fff;
}

.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;
}




.about .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  background: #fff;
  border-radius: 20px;
  padding-top: 15px;
  z-index: 5;
  position: relative;
}






@-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
--------------------------------------------------------------*/
.cta {
    padding: 94px 0;
    background: url(../images/bg-2.jpg) top center;
    background-size: cover;
    margin-top: -77px;
    height: 800px;
}


.cta-solar {
    padding: 0px 0;
    background-size: cover;
    height: auto;
}

.tabs {
  max-width: 700px;
  margin: 0px auto;
}

.tabs-nav {
	margin: 0px;
	padding-left: 0px;
}
.tabs-nav li {
  float: left;
  width: 50%;
}
.tabs-nav li:first-child a {
  border-right: 0;
  
}


.tabs-nav li:last-child a {
  border-top-right-radius: 6px;
}
.tabs a {
   background: #eaeaed;
    border-bottom: 2px solid #e21b1f;
    color: #101010;
    display: block;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
}

.tab-active a {
    background: #e21b1f;
    border-bottom-color: transparent;
    color: #ffffff;
    cursor: default;
}
.tabs-stage {
  border: 1px solid #cecfd5;
  border-top: 0;
  clear: both;
  padding: 24px 30px;
  position: relative;
  top: -1px;
}

.tab-section {
	background-color: #fff;
	padding-top: 24px;
    padding-bottom: 24px;
}

.tabs-nav li {
	list-style: none;
}








/*======= solar page carsouel*/





/*=======*/





.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #000;
  font-family: 'Mark';
}



/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/

.faq-main .accordion {
    background-color: #ffffff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin: 14px 0 0 0;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    border-left: 2px solid #ffffff;
}

.faq-main .active, .accordion:hover {
  /*background-color: #ccc;*/
}

.faq-main .accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faq-main .active{
	border-left: 2px solid #e21b1f;
	transform: none;
}

.faq-main .active:after {
  content: "\2212";
  
}

.faq-main .panel {
    padding: 0 18px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-family: 'Lato', sans-serif;
    color: #313334;
    border-left: 2px solid #e21b1f;
    border-bottom: 1px solid #ccc;
}

.red-more{
	text-align: center;
    margin-top: 30px;
}

.red-more a{
	background-color: #000000;
    color: #fff;
    padding: 5px 27px 5px 27px;
	font-family: 'Poppins', sans-serif;
}


/*--------------------------------------------------------------
# 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;
}

@media only screen and (min-width: 320px) and (max-width: 410px)  {
	.circle-learder:before {
    content: "";
    position: absolute;
    left: 20px;
}

.circle-learder:after {
    content: "";
    position: absolute;
    right: 20px;
}
	
}


@media only screen and (min-width: 320px) and (max-width: 480px)  {
.top-header {
    height: 90px;
	}
.top-header .nav-menu ul li a {
    color: #fff;
    text-transform: capitalize;
    font-size: 12px;
    padding: 10px 7px;
}

.circle-learder img {
        width: 122px !important;
    height: 116px !important;
    border-radius: 0%;
}



.circle-learder {
    width: 122px;
    height: 122px;
    border-radius: 0%;
    margin: 0px auto;
}

.values-box {
        background-color: transparent;
    height: auto;
    width: 300px;
    border-radius: 180px;
    margin: 0px auto;
    padding: 20px;
	padding-bottom: 72px;
}

.value-right ul li {
    list-style: none;
    padding-left: 0px;
    margin-top: 10px;
    font-family: 'Mark';
    font-size: 15px;
}

.value-left-logo {
    width: 100%;
    padding-left: 15px;
    padding-top: 15px;
    margin-top: 11px;
}

.global-reach-section {
    height: auto;
	background-position: top;
}

.sar-logo img {
    width: 120px;
}


#hero-about {
    height: 170px;
}

#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;
}

.about-info {
    font-size: 16px;
}

.vision-section {
    height: auto;
}

.solar-form .frm-filed {
	margin-left: 20px;
    margin-top: 10px;
}

.cta {
     height: auto;
}

.cal-box {
    border-right: 0px solid #e4e4e4;
    text-align: center;
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 15px;
    margin-top: 24px;
}

.cal-box-last{
	 margin-top: 24px;
}

.bill-icon {
    top: 3px;
}

.circle-image-box {
    width: 60px;
    height: 60px;
}

.testi-name {
    margin-top: 6px;
    font-size: 18px;
    margin-bottom: 0px;
}

.circle-image-box img {
    width: 60px !important;
    height: 60px;
}

.designation {
	margin-bottom: 0px;
}

.testimonial-content {
	font-size: 14px;
}

.owl-carousel .owl-stage-outer{
	  height: 290px !important;
}



.fixed-stip {
   height: 80px;
   font-size: 14px;
}

.calculate-btn a {
	padding: 7px 0 0 0;
}

.back-to-top {
	bottom: 0px;
}



.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;
}

.global-reach-left {
    padding-bottom: 36px;
}

.leader-info {
    width: 100%;
}

.vision-box {
    margin: 0px auto;
    width: 100%;
}

}

@media only screen and (min-width: 481px) and (max-width: 640px)  {
.logo {
    position: relative;
    margin-top: -10px;
}

.about-info {
	padding-top: 14px;
}

.vision-section {
    height: auto;
}

.values-box {
        background-color: transparent;
    height: auto;
    width: 300px;
    border-radius: 180px;
    margin: 0px auto;
    padding: 20px;
    padding-bottom: 72px;
}

#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;
}

.value-left-logo {
    width: 100%;
    padding-left: 18px;
    padding-top: 11px;
    margin-top: 11px;
}
	
.value-right ul li {
	font-size: 14px;
}

.global-reach-section {
    height: auto;
    background-position: top;
}

.global-reach-left {
    padding-bottom: 90px;
    border-right: 0px solid #bdbcbc;
}

#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: 641px) and (max-width: 767px)  {
.logo {
    position: relative;
    margin-top: -10px;
}

.about-info {
	padding-top: 14px;
}

.vision-section {
    height: auto;
}

.values-box {
        background-color: transparent;
    height: auto;
    width: 300px;
    border-radius: 180px;
    margin: 0px auto;
    padding: 20px;
    padding-bottom: 72px;
}

.value-left-logo {
    width: 100%;
    padding-left: 18px;
    padding-top: 11px;
    margin-top: 11px;
}
	
.value-right ul li {
	font-size: 14px;
}

.global-reach-section {
    height: auto;
    background-position: top;
}

.global-reach-left {
    padding-bottom: 90px;
    border-right: 0px solid #bdbcbc;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    width: 50%;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
    width: 50%;
}

#hero-about {
    height: 300px;
}

}

@media only screen and (min-width: 768px) and (max-width: 924px)  {

#hero-about {
    height: 300px;
}

.vision-section {
    height: auto;
}

.vision-box {
    width: 96%;
}

.values-box {
        background-color: transparent;
    height: 398px;
    width: 640px;
}

.value-right ul li {
    font-size: 15px;
	margin-top: 8px;
}

.value-left-logo img {
    width: 162px;
    height: 162px;
}

.sar-logo img {
    width: 134px;
}
	
}


@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;
}

.cal-box {
    border-right: 0px solid #e4e4e4;
    text-align: center;
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 15px;
    margin-top: 24px;
}
	
}


@media only screen and (min-width: 991px) and (max-width: 1024px)  {
#hero {
    height: 35vh;
	}

figure.effect-layla figcaption {
    padding: 1em;
}

.grid figure {
	max-height: 272px;
}

figure.effect-layla h2 {
    padding-top: 18%;
}

.testimonial-content {
	font-size: 14px;
}

.owl-carousel .owl-stage-outer {
	height: 370px !important;
}	
	
}

@media only screen and (min-width: 320px) and (max-width: 340px)  {
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0px 0%;
	min-width: 320px;
	max-width: 480px;
	max-height: 300px;
	width: 33.3%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

#hero {
    height: 38vh;
}

}

@media only screen and (min-width: 341px) and (max-width: 360px)  {
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0px 0%;
	min-width: 360px;
	max-width: 480px;
	max-height: 300px;
	width: 33.3%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

#hero {
    height: 38vh;
}

}

@media only screen and (min-width: 361px) and (max-width: 414px)  {
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0px 0%;
	min-width: 414px;
	max-width: 480px;
	max-height: 300px;
	width: 33.3%;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

#hero {
    height: 34vh;
}
}



