@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;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: white;
}
body{
    background: #000000;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.wrapper{
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  z-index: 4;
}
.wrapper nav{
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 15%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
nav .content{
  display: flex;
  align-items: center;
}
nav .content .links{
  right: 0;
  display: flex;
  position: absolute;
}
.content .logo a{
  color: #fff;
  margin-left: 50px;
  font-size: 30px;
  font-weight: 300;
}
.content .links li{
  list-style: none;
  line-height: 70px;
}
.content .links li a,
.content .links li label{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.content .links li label{
  display: none;
}
.content .links li a:hover,
.content .links li label:hover{
  background: #323c4e;
}
.wrapper .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.wrapper .menu-icon{
  display: none;
}
.wrapper input[type="checkbox"]{
  display: none;
}
/* Dropdown Menu code start */
.content .links ul{
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.content .links li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a{
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px!important;
}
.content .links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}
.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}
/* Responsive code start */
@media screen and (max-width: 1250px){
  .wrapper nav{
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .content .links li a{
    padding: 8px 13px;
  }
  footer{
    flex-direction: column;
  }
  footer div{
    justify-content: center;
  }
  footer h4{
    padding-right: 0!important;
    margin: 2rem 0 -3rem 0;
  }
}
@media screen and (max-width: 900px){
  .wrapper .menu-icon{
    display: block;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }
  nav .content .links{
    display: block;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .content .links{
    left: 0%;
  }
  .content .links li{
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label{
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .content .links li a.desktop-link{
    display: none;
  }
  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .content .links #show-Services:checked ~ ul,
  .content .links #show-items:checked ~ ul{
    max-height: 100vh;
  }
  .content .links ul li{
    margin: 7px 20px;
  }
  .content .links ul li a{
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px!important;
  }
  .logo img{
    right: 2rem;
  }
  .content .logo a{
    color: rgba(0, 0, 0, 0);
  }
  .logo{
    display: none;
  }
  .logogo{
    display: block!important;
    height: 50px;
    position: absolute;
    right: 1rem;
  }
}
@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
  }
  .content .logo a{
    font-size: 27px;
  }
}
.logo img{
    height: 50px;
    width: auto;
    position: absolute;
}
/*end nav bar*/
/*end nav bar*/
main{
  height: calc(100% - 370px);
  width: 100%;
  top: 70px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main h1{
  font-weight: 300;
  font-size: 4rem;
}
main a{
  background: #08bc94;
  padding: 1rem 2rem;
  min-width: 200px;
  border-radius: 9999px;
  display: inline-block;
  position: relative;
  margin: 1rem;
  font-weight: 500;
  transition: all .2s ease-in-out;
  scale: 1;
  color: white;
}
main a:hover{
  background: #146e5b;
  scale: 1.05;
}
main i{
  position: absolute;
  right: 2rem;
}
section{
  position: absolute;
  top: calc(100% - 300px);
  width: 100%;
}
.wavey{
  height: 300px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  background: #0a0a0a;
  border-top: solid 3px #08bc94;
  justify-content: center;
}
.wavey div{
  height: 100%;
  margin: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wavey i{
  font-size: 50px;
  width: fit-content;
  padding: 20px;
  border: solid 2px white;
  border-radius: 9999px;
  margin-bottom: 20px;
}
.wavey h1{
  font-weight: 300;
}
.wavey h2{
  font-weight: 500;
}
.Plans{
  width: 100%;
  display: flex;
  background: linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(21,21,21,1) 100%);
  position: relative;
  flex-direction: column;
}
.Plans h1{
  font-size: 3rem;
  font-weight: 300;
  margin-top: 100px;
  text-align: center;
}
.planz{
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-self: center;
  flex-wrap: wrap;
  justify-content: center;
}
.plan{
  width: 400px;
  background: #17191b;
  margin: 2rem;
  padding: 2rem;
  border-radius: 1rem;
}
.plan:hover{
  background: #1e2124;
}
.plan div, .plan a{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  padding: 1rem;
  background: #1b1b1b;
  border-radius: 0rem 1rem 1rem 0;
  border-left: solid 2px lime;
  transition: border-left .2s ease-in-out;
}
.plan div:hover{
  border-left: solid 10px lime;
}
.plan header{
  position: relative;
}
.plan header h3{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.plan hr{
  margin: 15px 0;
}
.plan header{
  display: flex;
  flex-direction: row;
  position: relative;
}
.genlist{
  background: #086bbc!important;
  border-radius: 1rem!important;
  border: none!important;
}
.buynow{
  background: #08bc94!important;
  border-radius: 1rem!important;
  border: none!important;
}
/*start footer*/
/*start footer*/
footer{
  padding: 3rem auto;
  position: relative;
  display: flex;
  justify-content: center;
  background: rgb(20, 20, 20);
  border-top: solid 3px purple;
}
footer h4{
  font-size: 60px;
  font-weight: 300;
  padding-right: 5rem;
  align-self: center;
}
footer div{
  display: inline-flex;
}
footer div div{
  display: table-column;
  margin: 5rem 3rem;
}
footer a{
  font-weight: 200;
  color: white;
}
footer ul{
  list-style-type: none;
}
footer div hr{
  margin: 0.2rem 0;
  width: 100%;
}
@media screen and (max-width: 650px){
  footer div div{
    margin: 5rem 1rem;
  }
}
@media screen and (max-width: 500px){
  footer div div{
    margin: 2rem 1rem;
  }
  footer div{
    flex-direction: column;
  }
  footer h4{
    font-size: 50px;
    margin: 2rem 0 0 0;
    text-align: center;
  }
}
.logogo{
  display: none;
}
