@import url('https:fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body{
  background-color: #1f2421;
}
a{
  color: white;
  text-decoration: none;
}

.navbar{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 25px 9%;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  
}
.navbar .logo{
   font-size: 30px;
   font-weight: 700;

}
.navbar ul{
  display: flex;
}
.navbar ul li{
  list-style: none;
  margin-left: 35px;
}

.navbar a{
  font-size: 20px;
  font-weight: 500;
  transition: 0.5s;
}

.navbar ul li:hover a,
.navbar ul li.active a{
  color: rgb(51, 233, 51);

} 

.home{
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 60px 9% 0;
  color: #fff;
}

.home-info h1 {
  font-size: 55px;
  padding-bottom: 5px;
  
}
.home-info h2{
  font-size: 33px;
  margin-top: -10px;
   padding-bottom: 5px;
     
}
.home-info p{
  font-size: 16px;
  margin: 10px 0 25;
  padding-bottom: 20px;
    

}
.home-info .btn-sci{
  display: flex;
  align-items: center;
}

.btn{
  display: inline-block;
  padding: 10px 30px;
  background: rgb(86, 218, 86);
  border: 2px solid rgb(86, 218, 86);
  border-radius: 40px;
  box-shadow: rgb(86, 218, 86);
  font-size: 16px;
  color: rgb(26, 24, 24);
  font-weight: 600;
  transition: .5s;
}
.btn:hover{
background: transparent;
color: rgb(51, 233, 51) ;
box-shadow: none;
}

.home-info .btn-sci .sci{
  margin-left: 20px;
}

.home-info .btn-sci .sci a {
  display: inline-flex;
  padding: 8px;
  border: 2px solid rgb(86, 218, 86);
  border-radius: 50%;
  font-size: 15px;
  color: rgb(86, 218, 86);
  margin: 0 8px;
  transition: .5s;
} 


.home-info .btn-sci .sci a:hover{
   background:  rgb(86, 218, 86) ;
   color: #1f2421;
   box-shadow: 0 0 10px rgb(86, 218, 86);

}


.home-img .img-box{
  width: 32vw;
  height: 32vw;
 background: rgb(23, 194, 114);
 border-radius: 50%;
 
}

.home-img .img-box .img-item{
  position: relative;
  width: 100%;
  height: 100%;
  background: slateblue;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  
}


.home-img .img-box .img-item img {
  position: absolute;
  display: block;
  width: 100%;
  object-fit: cover;
  

}