@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");
:root {
  --font-size: 0.8em;
  --bg1: #f5f8f7;
  --blue: gray;
  --green: gray;
  --purple: gray;
  --gold: gray;
  --red: gray;
  --orange: gray;
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
}

main {
  padding: 2vw;
}

ul.infoGraphic {
  /* font-size: var(--font-size); */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 25em;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}
ul.infoGraphic li .numberWrap {
  position: absolute;
}
ul.infoGraphic li .number {
  font-size: 8em;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
}
ul.infoGraphic li .number.fontColor1 {
  color: var(--blue);
}
ul.infoGraphic li .number.fontColor2 {
  color: var(--green);
}
ul.infoGraphic li .number.fontColor3 {
  color: var(--purple);
}
ul.infoGraphic li .number.fontColor4 {
  color: var(--gold);
}
ul.infoGraphic li .number.fontColor5 {
  color: var(--red);
}
ul.infoGraphic li .number.fontColor6 {
  color: var(--orange);
}
ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -4em;
  top: -2em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: var(--bg1);
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px/10px;
  z-index: -1;
}
ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}
ul.infoGraphic li .content {
  margin: 5em 0em 0em 7em;
  position: relative;
}
ul.infoGraphic li .content h2 {
  font-size: 1.7em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
ul.infoGraphic li .content p {
  line-height: 1.5em;
}


.content img{
    width:20%;
}


.main-for-cards{
  background: var(--bg1);
  min-height: 100vh;
  color: #444;
  display: grid;
  /* place-items: center; */
  padding: 5rem 4rem 2em;
}

.controls {
  position: fixed;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d7d7d7a1;
  padding: 0.5rem 2em;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border: 1px solid #0000004d;
}

.sliderBox {
  text-align: center;
}
.sliderBox .range-value {
  font-weight: 500;
  font-size: 22px;
}

input[type=range] {
  width: 100%;
  margin: 1em 0;
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  background: #00000066;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 2px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px black;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #eee;
}

input[type=range]::-moz-range-track {
  background: #000;
  border: 0;
  border-radius: 1.3px;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 13px 0;
  color: transparent;
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-fill-upper {
  background: #151728;
  border: 0;
  border-radius: 2.6px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #151728;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

input[type=range]:focus::-ms-fill-lower {
  background: #ffffff;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ffffff;
}



/*steps*/


.steps-section{
  /* display: flex; */
  font-weight: 700;
  padding:2rem 0 6rem;
}

.box-row {
  width:80%;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
@media(min-width:1024px){
  .box-row {
    width:80%;
    display: flex;
    justify-content: space-between;
    margin: auto;
  }
}
@media(max-width:1000px){
  .box-row {
    width:100%;
    display: flex;
    justify-content: space-between;
    margin: auto;
  }
}



.box-button {
  display: flex;
  align-items: center;
}

.box-label {
  text-align: center;
}

.box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.box-icon {
  width: 71px;
  height: 71px;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 50%;
  border: 1px solid black;
}

@media (max-width: 499px) {
  .box {
    width: 16px;
    height: 16px;
  }
  
  .box-icon {
  width: 50px;
  height: 50px;
  }
  
  .box-icon img {
    width: 30px;
  height: 25px;
  }
  .box-label {
    font-size:10px;
    line-height:1;
  }
  
  .steps-section{
    font-size: 0.8em;
  }
  ul.infoGraphic li .coverWrap{
    left: -8em;
    top: -4em;
  }
  ul.infoGraphic li .number {
    font-size: 5em;
  }
  ul.infoGraphic li .content {
    margin: 4em 0em 0em 2em;
  }

}
@media(max-width:499px){
  .box-tag {
    flex-grow: 1;
    min-width: 5px;
    height: 1px;
    background-color: black;
  }
}
@media(min-width:500px){
.box-tag {
  flex-grow: 1;
  min-width: 20px;
  height: 1px;
  background-color: black;
}
}

.box:first-child .box-tag-left {
  background-color: white;
}

.box:last-child .box-tag-right {
  background-color: white;
}

/*how solar system works*/
.how-system-works-sec{
  padding-top:4rem;
  padding-bottom:5rem;
}
.ul-sysytems li{
  border-radius: 40px 5px;
  border:1px solid green;
  padding:10px 15px;
  margin-bottom:0.5rem;
  background-color: #00800017;
}
.ul-sysytems {
  padding:0px 20px;
}

/*comparison start*/
:root {
  --Teal: #20bfa9;
  --Green: #4caf50;
  --Magenta: orange;
  --Black: #282828;
  --Grey: #e2e2e2;
}

.main {
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
  background-color: var(--Teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.main::before {
  content: "";
  position: absolute;
  left: 50%;
 
}

.main .prod {
  width: 45%;
  height: 95%;
  background-color: #fff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.main .prod div:not(.features) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 140px;
  background-color: var(--Black);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
}
@media(max-width:499px){
  .main .prod div:not(.features) {
    height: 167px;
  }
  .prod label {
    font-size: 15px;
  }
}
.main .prod div:not(.features) label {
  margin-top: 15px;
}
.main .prod div:not(.features) label span {
  color: var(--Green);
  margin-left: 6px;
}
.main .prod .features {
  width: 90%;
  height: 95%;
  margin: -50px auto 40px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 5px var(--Black);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.main .prod .features h4 {
  font-size: 20px;
  margin-block: 20px;
  text-align: center;
}
.main .prod .features ul li {
  list-style: none;
}
.main .prod .features ul li::before {
  content: "\2022";
  position: relative;
  top: 4px;
  right: 5px;
  color: var(--Magenta);
  font-weight: bold;
  font-size: 30px;
}
.main .prod .features a {
  width: 80%;
  padding: 10px;
  margin: 20px auto;
  background-color: var(--Magenta);
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.main .prod .features a::before,
.main .prod .features a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: inherit;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.main .prod .features a::before {
  top: -4px;
  left: 0;
}
.main .prod .features a::after {
  bottom: -4px;
  right: 0;
}
.main .prod .features a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.main .prod .features a:hover::before,
.main .prod .features a:hover::after {
  width: 100%;
}
@media (max-width: 499px) {
  .main {
    margin: 10px auto;
    flex-direction: column;
    justify-content: center !important;
    gap: 60px;
  }
 .main .prod{
  width:125%
 }
 .comparison-image{
  display: none;
 }
}
@media(min-width:500px) and (max-width:799px){
  .comparison-image{
    display: none;
   }
   .main .prod {
    width: 48%;
   }
   .prod label {
    font-size: 14px;
   }
   ul.infoGraphic li {
    height: 80vh;
    max-width:20em;
   }
}
.comparison-image img{
  width:50%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  z-index:1;
}
.comparison-image div{
  height:12vh;
}
.comparison-image{
  padding-top:5rem;
}

.features li{
  border-bottom:1px solid gray;
}
.features ul{
  padding:10px 20px;
}
.prod label{
  text-align:center;
  padding:0.5rem 2rem;
}

/*comparison end*/

/*footer*/
@media(min-width:800px) and  (max-width:999px){
  .navbar-style-footer{
    width:40%;
  }
}
@media(min-width:1000px) {
  .navbar-style-footer{
    width:60%;
  }
}
@media(max-width:799px) and (min-width:320px){
  .navbar-style-footer{
    width:100%;
  }
}
.navbar-style-footer{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin:0 auto;
  padding:10px 0;
}
.grayscale-sec li svg{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media(min-width:1026px){
  .offset-xl-1 {
    margin-left: 12.333333% !important;
  }
  
  .navbar .attr-right .attr-nav li.button a{
    padding: 13px 10px !important;
  }
}
@media(min-width:900px) and (max-width:1025px){
  .offset-xl-1 {
    margin-left: 8.333333% !important;
  }
  
  .navbar .attr-right .attr-nav li.button a{
    padding: 13px 10px !important;
  }
}
.container-for-system{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}

@media(min-width:700px){
  .div-for-system{
    width:50%;
  }
}
@media(max-width:699px){
  .div-for-system{
    width:100%;
  }
}
