@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;

}

::-webkit-scrollbar{
  height: .1rem;
  width: .5rem;
}

::-webkit-scrollbar-track{
  background-color: #050831;
}

::-webkit-scrollbar-thumb{
  background-color: #00eed0;
  border-radius: 5rem;


}

body{
  font-family: "Poppins", sans-serif;
  background-color: #050831;
  color: #fff;
  overflow-x: hidden;

}

header{
  padding: 50px 8%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1000;

}

nav .logo {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}

nav .logo img{
  width: 170px;
  margin-right: 5px;
}


.navlist{
  display: flex;
  align-items: center;
}

.navlist li{
  margin-left: 1rem;
}

.navlist li a{
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 5px 12px;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid #12f7ff;
}

.navlist li a:hover{
  box-shadow:0 0 1rem #12f7ff;
  background: #12f7ff;
  color: #050831;
}

section{
  min-height: 150vh;
}

.parallax-home{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.parallax-home img{
  position: absolute;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}

.parallax-home img#moon{
  mix-blend-mode: screen;
}

.parallax-home #text{
  position: absolute;
  font-size: 2.5rem;
  text-shadow: 0 10px 4px rgba(0,0,0,0.85);
  top: 80%;
  left: 3%;
}

.about{
  position: relative;
}

.about img{
  position: absolute;
  z-index: 1000;
  object-fit: cover;
  pointer-events: none;
  top: 2%;
  width: 100%;
  right: 1px;
}


.about img.about-water{
  position: absolute;
  width: 120%;
  top: -210px;
  right: -4%;
}


.about img.about-desert{
  position: absolute;
  width: 100%;
  top: 35px;
  left: 1%;
}

.about img.about-grass{
  position: absolute;
  width: 120%;
  top: -80px;
  left: -2%;
}


.about .info-box{
  position: absolute;
  top: -60px;
  left: 10%;
  width: 40%;
  z-index: 1003;
  background-color: #050831;
}

.about .info-box h2{
  font-size: 3rem;
}

.about .info-box a{
  font-size: .8rem;
}


.about .info-box p{
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin-top: .5rem;
}

.btn{
  background: #12f7ff;
  color: #050831;
  text-decoration: none;
  border-radius: 25px;
  padding: .5rem 1rem;
  transition: all 0.3s ease;
  border: 2px solid #12f7ff;
  font-weight: 500;
}

.btn:hover{
  box-shadow:0 0 1rem #12f7ff;
  background: #050831;
  color: #12f7ff;

}

.products{
  background: #050831;
  padding: 3rem 10%;
}

.products h2{
  font-size: 2.5rem;
  padding: 2rem 0 1rem 0;
  text-align: center;
  margin-bottom: 5rem;
  
}

.products-card{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.card{
  width: 420px;
  background: radial-gradient(#111 50% #000 100%);
  overflow: hidden;
  position: relative;
  border-radius: 25px;
 
}


.card img{
  width: 100%;
  transform: scale(1);
  transition: all 0.3s ease-out;
}

.card:hover img{
  transform: scale(1.2) translateY(-20px);
  opacity: 0.3;
}

.info{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;

}
.info h3{
  font-weight: 700;
  font-size: 2.3rem;
  margin: 0 0 50px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out 0.1s;
}


.info p{
  font-size: 18px;
  margin: 0 0 50px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease-out 0.2s;
}

.btn{
  font-size: 1.3rem;
}

.card:hover .info h3{
  opacity: 1;
  transform: translateY(0);
}

.card:hover .info p{
  opacity: 1;
  transform: translateY(0);
}


footer{
  margin-top: 10%;
  background-color: #fff;
  width: 100vw;
}
.footerContainer{
  width: 100%;
  padding: 70px 30px 20px;
}
.socialIcons{
  display: flex;
  justify-content: center;
}
.socialIcons a{
  text-decoration: none;
  padding: 10px;
  background-color: #ffc120;
  margin: 12px;
  border-radius: 100px;
  display: flex;
}
.socialIcons a i{
  font-size: 2rem;
  color:#050831;
  opacity: 0.9;
}

.socialIcons a:hover{
  background-color: #050831;
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: #fff;
  transition: 0.5s;
}

.footerNav{
  margin: 5px 0;
}
.footerNav ul{
  display: flex;
  justify-content: center;
  color: #050831;
}

.footerBottom{
  padding: 1px;
  text-align: center;
}
.footerBottom p{
  color:#050831;
}

.designer{
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 15px;
}



@media screen and (max-width:576px) {
  nav .logo span{
    font-size: 1rem;
  }

  nav .logo img{
    max-width: 70%;
    display: block;
  }
  
  ul.navlist{
    display: flex;
    margin-left: 100px;
  }

  ul.navlist li a{
    font-size: .5rem;
    border: .5px solid #12f7ff;
  }

  .parallax-home img{
    max-width: 100%;
    display: block;
    overflow: hidden;
  }
  .parallax-home #text{
    font-size: 1rem;
  }
  .about .info-box{
    width: 55%;
    top: -310px;
    background-color: #050831;
  }

  .about .info-box h2{
    font-size: .9rem;

  }
  .about .info-box p{
    font-size: .5rem;
    margin-bottom: .7rem;
  }
  .about .info-box a{
    font-size: .5rem;
    border-radius: 25px;
    padding: .2rem .5rem;
  }

  .about img.about-water{
    overflow: hidden;
   max-width: 107%;
   display: block;
    top: -312px;
    right: -17px;
  }

  .about img.about-waterB{
    max-width: 100%;
    display: block;
    top: -265px;
    left: 1px;
    overflow: hidden;
  }
  .about img.about-desert{
    max-width: 90%;
    display: block;
    top: -245px;
    left: 30px;
    overflow: hidden;
  }
  .about img.about-grass{
    left: 1px;
    max-width: 100%;
    display: block;
    top: -250px;
    overflow: hidden;
  }
  
  .about img{
    
    max-width: 100%;
    display: block;
    top: -265px;
    right: -3px;
    overflow: hidden;
  }

  .products{
    margin-top: -180%;
  justify-content: center;
  overflow: hidden;
  }
  .products h2{
    font-size: 1.5rem;
    width: 400px;
  }
  .products-card{
    flex-direction: column;
    width: 50%;
    left: -50px;
  }


  .card{
    left: 110px;
    width: 300px;
  }
   
  .info{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 15px;
  }
  .info h3{
    font-weight: 700;
    font-size: 1.8rem;
  
  }
  
  .info p{
    font-size: 18px;
  
  }


}

@media screen and (min-width:576px){
  nav .logo span{
    font-size: 1.3rem;
    margin-left: -2%;
    overflow: hidden;
  }

  nav .logo img{
    width: 20%;
    margin-left: -10px;
    overflow: hidden;
  }
  
  ul.navlist{
   
    display: flex;
    margin-left: 1px;
    
  }

  ul.navlist li a{
    font-size: .8rem;
    
  }
  .parallax-home #text{
    font-size: 1.5rem;
    overflow: hidden;
  }
  .about .info-box{
    overflow: hidden;
    width: 50%;
    top: -230px;
    background-color: #050831;
  }

  .about .info-box h2{
    font-size: 1.5rem;
    overflow: hidden;

  }
  .about .info-box p{
    font-size: .7rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
  }
  .about .info-box a{
    font-size: .7rem;

  }


  .about img.about-water{
    width: 105%;
    top: -245px;
    right: -15px;
    overflow: hidden;
  }

  .about img.about-waterB{
    width: 100%;
    top: -185px;
    overflow: hidden;
  }
  .about img.about-desert{
    
    width: 100%;
    top: -180px;
    left: 20px;
    overflow: hidden;
  }
  .about img.about-grass{
    
    width: 100%;
    top: -180px;
    overflow: hidden;
  }
  
  .about img{
    
    width: 100%;
    top: -190px;
    right: -3px;
    overflow: hidden;
  }

  .products{
    margin-top: -95%;
    overflow: hidden;
    margin-bottom: -230px;

  }
  .products h2{
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
  }


  .card{
    justify-items: center;
    width: 210px;
    overflow: hidden;
  }

  
  .info{
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 15px;
  margin-bottom: 1.3rem;

  }
  .info h3{
  font-weight: 600;
  font-size: 1.3rem;

  }

  .info p{
  font-size: 14px;
  }
  
  .btn{
  font-size: .7rem;
  }

  footer{
    width: 100%;
  }



}

@media screen and (min-width:768px){
 
  nav .logo span{
    font-size: 1.5rem;
    overflow: hidden;
  }

  nav .logo img{
    max-width: 100%;
    margin-right: -5px;
    overflow: hidden;
  }

  .navlist li{
    margin-left: 1rem;
  }

  .navlist li a{
    font-size: .9rem;
    overflow: hidden;
  }

  .parallax-home img{
    max-width: 100%;
    display: block;
    top: 24%;
    left: -2%;
    overflow: hidden;
  }

  .parallax-home #text{
  font-size: 1.5rem;
  overflow: hidden;
  }

  .about img.about-water{
    max-width: 105%;
    display: block;
    top: -213px;
    left: -4%;
    overflow: hidden;
  }

  .about img.about-waterB{
    max-width: 100%;
    display: block;
    top: -130px;
    left: -1%;
    overflow: hidden;
  }

  
  .about img{
    max-width: 100%;
    display: block;
    top: -130px;
    overflow: hidden;
  }

  .about img.about-grass{
    max-width: 100%;
    display: block;
    top: -90px;
    overflow: hidden;
  }
  
  .about img.about-desert{
    max-width: 95%;
    display: block;
    top: -110px;
    left: 1%;

  }

  
  .about .info-box{
  top: -200px;
  left: 10%;
  width: 50%;
  }

  .about .info-box h2{
    font-size: 1.5rem;
  }
  
  .about .info-box p{
    font-size: .8rem;
    margin-bottom: 2rem;
    margin-top: .5rem;
  }
  .about .info-box a{
    font-size: .9rem;

  }

  .btn{
    font-size: 1rem;
    border: 2px solid #12f7ff;
    font-weight: 500;
  }
  
  .products{
    max-width: 100%;
    display: block;
    margin-top: -450px;
    justify-content: center;
    overflow: hidden;
  }
  .products h2{
    width: 100%;
    font-size: 1.9rem;
  }

  .info h3{
    font-weight: 700;
    font-size: 1.6rem;
  }


  .card{
    justify-items: center;
    width: 245px;
    overflow: hidden;
  }


}

@media screen and (min-width:992px){
  nav .logo span{
    font-size: 1.5rem;
    margin-left: -1%;
  }

  nav .logo img{
    max-width: 100%;
    display: block;
  }

  .navlist li{
    margin-left: 1.2rem;
  }

  .navlist li a{
    font-size: 1.5rem;
  }

  .parallax-home img{
    max-width: 105%;
    top: 25%;
  }

  .parallax-home #text{
  font-size: 1.8rem;
  }

  .about img.about-water{
    max-width: 110%;
    display: block;
    top: -200px;
    left: -4%;
  }

  .about img.about-waterB{
    max-width: 105%;
    display: block;
    top: -100px;
    left: -1%;
  }

  
  .about img{
    max-width: 100%;
    display: block;
  top: -100px;
 
  }

  .about img.about-grass{
    max-width: 100%;
    display: block;
    top: -70px;
  }
  
  .about img.about-desert{
    max-width: 100%;
    display: block;
  top: -80px;
  left: -1%;
  }

  .about .info-box{
  top: -160px;
  left: 10%;
  width: 50%;
  background-color: #050831;
  }

  .about .info-box h2{
    font-size: 2rem;
  }
  
  .about .info-box p{
    font-size: 1rem;
    margin-bottom: 1.3rem;
    margin-top: .5rem;
  }
  .about .info-box a{
    font-size: .9rem;

  }

  .btn{
    font-size: 1rem;
    border: 3px solid #12f7ff;
    font-weight: 600;
  }
  
  .products{
    padding: 3rem 10%;
    margin-top: -50%;
    margin-left: 1%;
  }
  
  .products h2{
    width: 800px;
    font-size: 2.3rem;
    padding: 2rem 0 1rem 0;
    margin-bottom: 3rem;
  }

  .info h3{
    font-weight: 700;
    font-size: 2rem;
  }

  .info p{
    font-size: 17px;
  }
  

  
  .card{
    left: 5px;
    width: 300px;
  }

  .card img{
  width: 100%;
  }


  
}

@media screen and (min-width:1200px){
 
  nav .logo span{
  font-size: 2rem;
 
  }
  nav .logo img{
  width: 160px;
  margin-right: 5px;
  }

  ul.navlist{
    margin-left: 1.5rem;
  }
  ul.navlist li{
  margin-left: 1.5rem;
  }
  ul.navlist li a{
    font-size: 1rem;
  }

  .parallax-home img{
    width: 105%;
    display: block; 
  }

 
  .parallax-home #text{
  font-size: 2.5rem;

  }

  .about img{
    max-width: 100%;
    display: block;
    top: 90px;
  }
  .about img.about-water{
    max-width: 105%;
    display: block;
  top: -30px;
  left: -1%;
  }
  .about img.about-waterB{
    width: 105%;
    display: block;
    top: 70px;
  }
  .about img.about-grass{
    width: 105%;
    display: block;
    top: 140px;

  }
  .about img.about-desert{
    max-width: 90%;
    display: block;
  top: 152px;
  left: 4%;
  }

  .about .info-box{
    width: 50%;
    top: 10px;
    background-color: #050831;
  }
  .about .info-box h2{
  font-size: 3rem;
  }
  .about .info-box p{
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  }
  .about .info-box a{
    font-size: 1.2rem;
  }

  .products{
    margin-top: -5%;
  }
  .products h2{
  width: 100%;
  font-size: 2.5rem;
  }
  .products-card{
    left: -10px;
  }
  .card{
  left: -2px;
  width: 375px;
  gap: 1rem;
  }
  .card img{
  width: 100%;
  }

  .btn{
    font-size: 1.3rem;
    border: 1.5px solid #12f7ff;
    font-weight: 500;
  }

  .info{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 18px;
  
  }
  .info h3{
    font-weight: 700;
    font-size: 2.5rem;
  }
  
  .info p{
    font-size: 20px;
  }

}

@media screen and (min-width:1440px){
 
  nav .logo span{
  font-size: 2rem;
 
  }
  nav .logo img{
  width: 160px;
  margin-right: 5px;
  }

  ul.navlist{
    margin-left: 1.5rem;
  }
  ul.navlist li{
  margin-left: 1.5rem;
  }
  ul.navlist li a{
    font-size: 1.3rem;
  }

  .parallax-home img{
    max-width: 120%; 
  display: block;
  }

 
  .parallax-home #text{
  font-size: 2.5rem;

  }

  .about img{
    max-width: 100%;
    display: block;
    top: -20px;
  }
  .about img.about-water{
    max-width: 110%;
    display: block;
  top: -170px;
  left: -1%;
  }
  .about img.about-waterB{
    max-width: 105%;
    display: block;
    top: -50px;
  }
  .about img.about-grass{
    max-width: 107%;
    display: block;
    top: -5px;
    
  }
  .about img.about-desert{
    max-width: 100%;
    display: block;
  top: 10px;
  left: 2%;
  }

  .about .info-box{
    width: 50%;
    top: -100px;
    background-color: #050831;
  }
  .about .info-box h2{
  font-size: 3rem;
  }
  .about .info-box p{
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  }
  .about .info-box a{
    font-size: 1.5rem;
  }

  .products{
    margin-top: -30%;
  }
  .products h2{
  width: 100%;
  font-size: 2.8rem;
  }
 
  .card{
  left: -2px;
  width: 450px;
  gap: 1rem;
  }
  .card img{
  width: 100%;
  }

  .btn{
    font-size: 1.5rem;
    border: 2px solid #12f7ff;
    font-weight: 500;
  }

  .info{
    width: 100%;
  
  }
  .info h3{
    font-weight: 700;
    font-size: 2.8rem;
  }
  
  .info p{
    font-size: 25px;
  }

  footer{
    width: 110%;
  }

}
