@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/*-------- Menu section start---------------*/
.menu-container {
	width: 100%;
	height: 80px;
	background: white;
	position: fixed;
	z-index: 99;
    box-shadow: 0px 0px 2px rgb(189, 189, 189);
}


.logo {
	width: 30%;
	height: 82px;
	float: left;
    border: px solid red;
    display: flex;
    align-items: center;
}

.logo img {
    width: 110px;
    background-colo: #5927FF;
}

.menu-item { 
	width: 70%;
	float: left;
	height: 100%;
	text-align: end;
    border: px solid black;
}

.menu-item li {
	display: inline-block;
	line-height: 80px;
	padding: 0px 20px 0px 20px;
	font-weight: 600;
	font-size: 16px;
}

.menu-item li:hover {
	background: #24b6f8;

}
.menu-item li a {
	text-decoration: none;
	color: black;
}
.menu-item li:hover a{
	color: white;
	
}



.responsive-menu {
	float: left;
	width: 10%;
	height: 100%;
	text-align: center;
    display: none;
}

.responsive-menu i {
	line-height: 80px;
	font-size: 25px;
	cursor: pointer;

}


.responsive-menu-item { 
	z-index: 11;
	width: 100%;
	height: auto;
	text-align: left;
	background: white;
	padding-top: 100px;
	position: fixed;
	left: 100%;
	transition: 1s;
	display: none;
}

.menu-slide {
	left: 0%;
	transition: 1s;
}


.responsive-menu-item li {
    display:block;
	line-height: 60px;
	padding: 0px 20px 0px 20px;
	font-weight: 600;
}

.responsive-menu-item li a {
	text-decoration: none;
	color: black;
}
.responsive-menu-item li:hover a{
	color: #24b6f8;
	
}

#icon-b {
	display: none;
}


@media screen and (max-width: 991px) {
	.menu-item {
		display: none;
	}
	.responsive-menu {
		float: right;
        display: block;
	}
	.icon-b {
		display: none;
	}

    .responsive-menu-item{
        display: block;
    }
}

/*----*/







/*-----*/
.Home{
    width: 100%;
    height: 100vh;
    background-image: url(img/h.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 0px !important;
}

.overlay{
    width: 100%;
    height: 100%;
    padding-top: 80px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay h1{
    color: white;
    font-weight: 700;
}

.Home-p{
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay p{
    color: white;
    font-size: 22px;
    padding-top: 15px;
    max-width: 900px;
}

/*--end--*/






























/*-----*/
:root {
    --accent-color: #24b6f8;
}

.Faq{
    width: 100%;
    height: auto;
    border: px solid red;
    padding: 100px 0px;
}

.Faq h1{
    text-align: center;
    color: black;
    padding-bottom: 15px;
    font-weight: 700 !important;
}

.Faq-p{
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-p{
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 15px;
    max-width: 500px;
}
  
.faq-container {
    margin: 0 auto;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    box-shado: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
  

.faq {
    box-sizing: border-box;
    background: transparent;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
  
.faq:not(:first-child) {
    border-top: 1px solid #e6e6e6;
}
  
.faq-title {
    margin: 0 35px 0 0;
}
  
.faq-text {
    margin: 30px 0 0;
    display: none;
    font-size: 18px;
    font-weight: 500;
}
  
.faq.active {
    background-color: #f8f8f8;
    box-shadow: inset 4px 0px 0px 0px var(--accent-color);
}
  
.faq.active .faq-title {
    color: #24b6f8;
}
  
.faq.active .faq-text {
    display: block;
}
  
.faq-toggle {
    background-color: transparent;
    border: 1px solid #e6e6e6;
    color: inherit;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-top: 3px;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
    transition: 0.3s ease;
}
  
.faq-toggle:focus {
    outline: none;
}
  
.faq.active .faq-toggle {
    transform: rotate(180deg);
    background-color: #24b6f8;
    color: #fff;
}

/*--end--*/




























/*----*/
.about{
    width: 100%;
    height: auto;
    background-color: rgba(36, 182, 248, 0.1);
    padding: 100px 0px;
}

.about h1{
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
}

.about p{
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 30px;
}

.about-img{
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 10px;
}

.about-text{
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text p{
    text-align: left;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .about-text p{
        padding-top: 20px;
    }
    
}
/*----*/
































/*----*/

.main-container{
    padding-top: 100px !important;
    padding-bottom: 100px;
}
  
.main-container h1{
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
}
  
input[type="range"] {
      -webkit-appearance: none;
      width: 70%;
      height: 3px;
      background-color: #d3d3d3;
      outline: none;
      border-radius: 5px;
      cursor: pointer;
}
    
input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 30px;
      height: 30px;
      background-color: #24b6f8;
      border-radius: 50%;
      cursor: pointer;
}
    
input[type="range"]::-moz-range-thumb {
      width: 40px;
      height: 40px;
      background-color: hwb(282 0% 0%); /* Use a modern Web3 color */
      border-radius: 50%;
      cursor: pointer;
}
    
input[type="range"]::-ms-thumb {
      width: 40px;
      height: 40px;
      background-color: hwb(282 0% 0%); /* Use a modern Web3 color */
      border-radius: 50%;
      cursor: pointer;
}
    
  
  
  
  
.buy-button {
      background-color: #24b6f8;
      color: white;
      font-size: 18px;
      padding: 10px 24px;
      border: none;
      cursor: pointer;
      display: inline-block;
      border-radius: 5px;
}
    


.produced-kwh-container {
      text-align: center;
      width: 90%;
      background-color: white;
      margin-top: 50px;
      box-shadow: 5px 5px 5px rgb(247, 247, 247), -5px -5px 5px rgb(247, 247, 247);
}
    


.sticky-bar {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-around; /* Ändern Sie dies von 'center' zu 'space-around' */
    align-items: center;
    z-index: 100;
}
  
.sticky-bar p {
    color: black;
    font-size: 18px;
    font-weight: 500;
}


.produced-kwh {
      font-size: 32px; 
      letter-spacing: 0.1em;
      color: #24b6f8;
      padding: 10px;
      border-radius: 10px;
      display: inline-block;
}
  
.produced-kwh.unit {
      font-size: 32px; /* Adjust the font size as needed */
      margin-left: 2px;
}
    

  
  
  
.popup-image {
      width: 100%;
      max-width: 300px; /* Adjust the maximum width as needed */
      height: auto;
      display: block;
      margin: 0 auto;
      margin-bottom: 20px; /* Add some space below the image */
}
    
    
.popup {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.50); /* Add this line */
}
    
.popup-content {
      background-color: #fefefe;
      margin: 0 auto;
      padding: 20px;
      border: none; 
      width: 80%;
      max-width: 400px;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
      border-radius: 16px;
      margin-top: 230px;
      position: relative;
}
   
.popup-content h2{
    font-size: 22px;
    padding-top: 15px;
}
    
.close-popup {
      color: #24b6f8;
      float: right;
      font-size: 25px;
      font-weight: bold;
      cursor: pointer;
      position: absolute;
      right: 10px;
      top: 10px;
}
    
.close-popup:hover,
.close-popup:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
}
    
.hidden {
      display: none;
}
    
  
.slider-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 1rem;
}
    
.slider-container label {
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 2rem;
      margin-top: 2rem;
      color: black;
}
    
  
  
input[type="range"] {
      width: 90%;
}
    
  
.can{
    border: 1px solid red;
    width: 90%;
    margin: 0 auto;
}


  
  
  /* Add this to your style.css file */
  
  @media screen and (max-width: 600px) {
      .slider-container label {
        font-size: 18px;
        color: black;
      }
    
      .affiliate-container {
        flex-direction: column;
      }
    }
    
.ok{
    margin: 0 auto;
    width: 90%;
    margin-top: 50px;
}

.device-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      background-color: rgba(36, 182, 248, 0.1);
      border-radius: 5px;
      padding: 7px;
      font-size: 14px;
      width: 100% !important;
      margin: 15px 0px;
}
    
  .device-name {
      flex: 2;
  }
    
  .device-runtime {
      flex: 1;
      text-align: right;
  }
  
    
    
  @media screen and (max-width: 600px) {
      .produced-kwh {
        font-size: 14px;
      }
    
      .produced-kwh.unit {
        font-size: 14px;
      }
  }
  
  

    
  
/* Responsive Design für die Sticky Bar */
@media screen and (max-width: 600px) {
      .sticky-bar p {
        font-size: 14px;
      }
    
      .produced-kwh {
        font-size: 14px;
      }
    
      .produced-kwh.unit {
        font-size: 14px;
      }
}
/*--end--*/












/*-----*/
.Contact{
    width: 100%;
    height: auto;
    border: px solid black;
    padding: 90px 0px;
}

.Contact1{
    border: px solid red;
    display: flex;
    align-items: center;
    justify-content: end;
}

.con{
    width: 90%;
    height: 100%;
    background-colo: #000;
}

.Contact1 h1{
    font-weight: 700;
    padding-bottom: 15px;
}

.Contact1 p{
    font-size: 20px;
    font-weight: 500;
}

.box{
    border: px solid red;
    display: flex;
    align-items: center;
    padding: 15px 0px;
}

.box p{
    padding-left: 15px;
    font-size: 18px;
    font-weight: 600;
}

.box2{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #24b6f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box2 i{
    color: white;
    font-size: 25px;
}

.Contact2{
    border: px solid green;
}

.Contact2 form{
    width: 90%;
    background-colo: #000;
}

.Contact2 input{
    width: 100%;
    height: 55px;
    margin: 15px 0px;
    padding: 10px 10px;
    border: none;
    background-color: #f8f8f8;
    outline: none;
    border-radius: 5px;
}

.Contact2 textarea{
    width: 100%;
    border: none;
    background-color: #f8f8f8;
    padding: 10px 10px;
    outline: none;
    height: 180px;
    border-radius: 5px;
    margin: 15px 0px;
}

.Contact2 ::placeholder{
    color: #24b6f8;
}

.Contact2 button{
    margin-top: 20px;
    border: none;
    background: none;
    background-color: #24b6f8;
    color: white;
    width: 40%;
    padding: 10px 20px;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .Contact1{
        justify-content: center;
    }
    .Contact2{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/*----*/













/*--Wave--*/

.wae{
    position:relative; width: 100%;
    height: 15vh;
    overflow:hidden;
}

section .wave{
    position:absolute; 
    bottom:0; 
    left:0; 
    width: 100%; 
    height: 100px;   
    background:url(img/wave\ copy.png);
    background-size: 1000px 100px;
}

section .wave.wave1{
    animation:animate 30s linear infinite;
    z-index:1000; 
    opacity:1;
    animation-delay:0s; 
    bottom:0;
}

section .wave.wave2{
    animation:animate2 15s linear infinite;
    z-index:999; 
    opacity:0.5;
    animation-delay: -5s; 
    bottom:10px;
}

section .wave.wave3{
    animation:animate 30s linear infinite;
    z-index:998; 
    opacity:0.2;
    animation-delay: -2s; 
    bottom:15px; 
}

section .wave.wave4{
    animation:animate2 5s linear infinite;
    z-index:997; 
    opacity:0.7;
    animation-delay: -5s; 
    bottom:20px;
}
  
@keyframes animate {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 1000px;
    }
  }
  @keyframes animate2 {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1000px;
    }
}

/*----*/


/*----*/
.bottom p{
    font-size: 20px;
    font-weight: 500;
    padding-top: 10px;
}
/*----*/