@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}
body{
  background-color: black;
  height: 100%;
}
custom scroll bar
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: rgb(129, 125, 125);
}
::selection{
  background: rgb(221, 0, 0);
}
.content{
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
  
}
.navbar{
  
  position: fixed;
  width: 100%;
  z-index: 2;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.navbar.sticky{
  background:black;
  background-color: transparent;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px black;
}
.navbar .content{
  background:black;
  background: linear-gradient(90deg, #f1c0e8 0%, #90dbf4 47%, #cfbaf0 100%);
  border: solid white;
  border-radius: 30px;
  padding:10px 50px 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo h1{
  color: black;
  background-color: transparent;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.navbar .menu-list{
  display: inline-flex;
  background-color: transparent;
}
.menu-list li{
  list-style: none;
  background-color: transparent;
}
.menu-list li a{
  font-size: 20px;
  
  font-weight: 600;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-list li a:hover{
  color: #8187dc;
  
}
.banner{
  background: url("banner.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about{
  padding: 30px 0;
}
.about .title{
  font-size: 38px;
  font-weight: 700;
}
.about p{
  padding-top: 20px;
  text-align: justify;
}
.icon{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (max-width: 1230px) {
  .content{
    padding: 0 60px;
  }
}
@media (max-width: 1100px) {
  .content{
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .content{
    padding: 0 30px;
  }
}
@media (max-width: 868px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .navbar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }
  .navbar.show .menu-list{
    left: 0%;
  }
  .navbar .menu-list li{
    margin-top: 45px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbar.show .menu-list li a{
    margin-left: 0px;
  }
}
@media (max-width: 380px) {
  .navbar .logo a{
    font-size: 27px;
  }
}
h1.hedtex{
  
    font-size: 55px;
    font-weight: 700;
    padding-left: 100px;
    background-color: transparent;
    text-transform: uppercase;
    margin-bottom: 25px
}
.wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 100px;
  padding-bottom: 30px;
}
.wrapper .dynamic-txts{
  margin-left: 15px;
  height: 90px;
  line-height: 90px;
  overflow: hidden;
}
.dynamic-txts li{
  list-style: none;
  color: white;
  font-size: 60px;
  font-weight: 500;
  position: relative;
  top: 0;
  animation: slide 12s steps(4) infinite;
}
@keyframes slide {
  100%{
    top: -360px;
  }
}
.dynamic-txts li span{
  position: relative;
  margin: 5px 0;
  line-height: 60px;
}
.dynamic-txts li span::after{
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background:black;
  border-left: 2px solid white;
  animation: typing 3s steps(10) infinite;
}
@keyframes typing {
  40%, 60%{
    left: calc(100% + 30px);
  }
  100%{
    left: 0;
  }
}
.button{
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.btn1{
  
  color:white;
  border:solid;
  border-radius: 10px;
  border-color: white;
  margin-top: 10px;
  margin-right: 50px;
  margin-left: 450px;
  padding: 10px 10px 10px 10px;
}
.btn1:hover{
  background:transparent;
  color:#ffffff;
  border:solid;
  border-color:#4b5563;
  border-radius: 10px;
  box-shadow: 0 0 10px #f1c0e8,0 0 2px  #90dbf448 , 0 0 10px;
} 
.btn2{
  background:transparent;
  color:white;
  border:solid;
  border-color: white;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
}
.btn2:hover{
  background:transparent;
  color:#ffffff;
  border:solid;
  border-color:#4b5563;
  border-radius: 10px;
  box-shadow: 0 0 10px #f1c0e8,0 0 2px  #90dbf448 , 0 0 10px;
}
.home{
  border:solid black;
  border-radius: 10px;
  padding:5px 5px 5px 5px;
  color:white;
  background-color:black; 
}
.home:hover{
  background:transparent;
  color:black;
  border:solid;
  border-color:black;
  border-radius: 10px;
  box-shadow: 0 0 10px black,0 0 40px black, 0 0 10px;
}
.section2{
  width:100%;
  height:60vh;
  background:black;
  display: flex;
  justify-content: center;
 align-items: center;
  justify-content: space-evenly;


}

.sec-right{
background-color: none;
width: 50%;
margin-top: 200px;

}

.sec-right p{
  font-size: 2.5rem;
  color: white;
  font-weight: 600;
  width: 80%;
  margin-bottom: 250px;
}


.sec-left{
background-color: none;
padding: 30px;
margin-top: 200px;

}

.section3{
  height: 100vh;
  background-color: #252525;
}


.sec-head{
  background-color: #000000;
  padding: 20px;
  text-align: center;
}

.sec-head p{
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background-color: #ff1d86;
  display: inline;
  padding: 20px 30px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid white;
}

.graph-1{
  height: 90vh;
  background-color: #000000;
  box-sizing: border-box;
  
  padding: 50px;
  border-radius: 5px;
  
}

.graph-1 iframe{
  width: 100%;
  height: 100%;
  
  border: 3px solid #ff1d86;
}

.section4{
  height: 100vh;
  background-color: none;
  display: flex;
  justify-content: center;align-items: center;justify-content: space-evenly;
}

.section4 .s4-left{
  height: 90vh;
  width: 40vw;
  background-color: none;
  
}
.section4 .s4-right{  height: 100vh;
  background-color: none;
  width: 40vw;
  height: 90vh;

}

.section4 .s4-left p{
  background-color: #90f495;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
}
.section4 .s4-right p{
  background-color: #90dbf4;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
}

.graph2{

  height: 60vh;
  background-color: #030303;
  margin-top: 50px;
  border: 1px solid white;
}


.section5{
  height: 100vh;
  background-color: #171616;
}

.section5 .s5-head{
 height: 100vh;
 background-color: none;
 display: flex;
 justify-content: center;
 align-items: center;
 justify-content: space-evenly;
}

.section5 .s5-head h2{
  width: 80%;
font-size: 2.8rem;
color: #fff;
font-weight: 600;
text-align: right;
padding: 25px 40px;
}

.section5 .s5-right{
  width: 100%;
  height: 100vh;
 background-color: #000000;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 justify-content: space-evenly;
}

.section5 .s5-right .s5-right-top{
  width: 600px;
  height: 300px;
  background-color: #ededed;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 3px;
}

.section5 .s5-right .s5-right-top p{
  padding: 20px;
}

.section5 .s5-right .s5-right-bottom{
  width: 600px;
  height: 300px;
  background-color: #ededed;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 3px;
  text-align: center;

}
.dam{
  margin:30px;
}


.section6{
  height: 100vh;
  background-color: #000000;
}

.section6 .s6-head{
 height: 100vh;
 background-color: none;
 display: flex;
 justify-content: center;
 align-items: center;
 justify-content: space-evenly;
 background-color: #171616;
}

.section6 .s6-head h2{

width: 40%;
font-size: 2rem;
color: rgb(224, 224, 224);
font-weight: 600;
padding: 50px 35px;
background-color: none;
border-radius: 10px;
border: 2px solid #fff;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.section6 .s6-right{
  width: 150px;
  
  display: flex;
  flex-direction: column;
}


.section6 .s6-right button{
  padding: 10px 20px;
background-color: #fcfcfc;
  margin: 5px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  cursor: pointer;

}

.section6 .s6-right button:focus{
  border: 2px white solid;
  background-color: #000000;
  color: #fcfcfc;
}

footer{
  height: 10vh;
  background-color: #8187dc;
}

footer h2{
  text-align: center;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}
.msection{
  background-color: #000000;
  height: 500vh;
  width:100%;
  display:inline-block;
  
}
.loog{
  border:solid rgb(49, 49, 50) 3px;
  margin:10px;
  padding:10px;
  border-radius: 3px;
}
.loog:hover{
  box-shadow: 1px 2px 3px 4px gray;
}
.steps{
  border:solid 3px;
  display:inline-block;
  margin:20px 30px;
  padding:10px 50px;
  border-radius: 10px;
  
}
.question{
  margin:30px auto;
  padding:30px;
  display:flex;
  border-radius: 10px;
  font-size: 20px;
  height:80vh;
  width:90%;
  background-color: #ffffff;
  color:#000000;
}
.quest{
  
  font-weight: 800;
  font-size: 30px;
}