@import url('https://fonts.googleapis.com/css2?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: 'Poppins', sans-serif; 
   scroll-behavior: smooth;
}
.banner
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    align-items: center;
    background: #21283a;
    overflow-x: hidden;
}
.banner::before
{
    content: '';
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #ed325f;
    transition: 1s;
}
.banner.active::before
{
    background: #21283a;
    box-shadow: 0 0 0 12000px #1ede6d;
}
header
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
}
header .logo
{
 font-size: 1.5em;
 color: #fff;
 letter-spacing: 2px;
 font-weight: 600;
 text-decoration: none;
 transition: 0.5s;
 transform-origin: right;  
}
header .toggle
{
    position: relative;
    width: 30px;
    height: 30px;
    background: url(img/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    cursor: pointer;
}
header .toggle.active
{
    background: url(img/close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
}   
.men
{
    position: absolute;
    z-index: 0;
    bottom: 10;
    right: 150px;
    max-width: 400px;
}
 /* .build1
{
    position: absolute;
    z-index: 0;
    bottom: 10; 
    width: 100px;
    height: 100px; 
    right: 150px;
    max-width: auto;
}  */
.content
{
 position: relative;
 z-index: 2;
 width: 100%;
 display: flex;
 justify-content: flex-start;
 align-items: center;
 transition: 0.5s;
 transform-origin: right;
}
.content .contentBx
{
    position: relative;
    max-width: 600px;
}
.content .contentBx h4
{
    font-weight: 400;
    color: #1ede6d;
    font-size: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 1px;
    line-height: 0px;
}
.content .contentBx h2
{

 font-size: 4em;
 line-height: 0.6em;
 color: #fff;
 font-family: 'Ubuntu', sans-serif;
 font-variant: small-caps;
 margin-top: 0px;
 margin-bottom: 20px;

}
.content .contentBx h3
{
   font-weight: 300;
   color: #fff;
   font-size: 1.5em;
   line-height: 1.5em;
   font-family: 'Ubuntu', sans-serif;
}
.content .contentBx h4
{
   font-weight: 100;
   color: #1ede6d;
   font-size: 1.35em;
   line-height: 0.5em;
   font-family: 'Ubuntu', sans-serif;
   font-variant: small-caps;
   margin-bottom: 0px;
   font-weight: bold;
}
.content .contentBx h5
{
   font-weight: 100;
   color: #1ede6d;
   font-size: 1em;
   line-height: 1.5em;
   font-family: 'Ubuntu', sans-serif;
   font-variant: small-caps;
}
.content .contentBx p
{
    font-size: 0.9em;
    color: #fff;
    margin: 10px 0 20px;
    font-weight: 300;
    line-height: 22px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
    
}
.content .contentBx a
{
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
    background: #ed325f;
    letter-spacing: 2px;
}
.content .contentBx a:last-child
{
    background: #1ede6d;
    color: #111;
}
.content .contentBx a:hover
{
    letter-spacing: 4px;
    background: #fff;
    color: #111
}
.sci
{
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: 0.5s;
    transform-origin: right;
}
.sci li
{
    list-style: none;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.sci li a
{
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 100%;
}
.sci li:hover a 
{
    background: #fff;
}
.sci li a img
{
    filter: invert(1);
    transform: scale(0.6);
}
.sci li:hover a img
{
    filter: invert(0);
}
.banner.active .sci,
.banner.active .content,
.banner.active .logo
{
    transform: scale(0);
    transform-origin: left;
}
 .menu
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 100px;
  transition: 0.5s;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
.banner.active .menu
{
    visibility: visible;
    opacity: 1;
}

.menu li
{
    list-style: none;
}
.menu li a
{
    color: #08381b;
    text-decoration: none;
    font-size: 1.5em;
    padding: 5px 10px;
    margin: 5px 0;
    display: inline-block;
    transition: 0.2s ease-in-out;  
}
.menu li a:hover
{
    letter-spacing: 6px;
    background: #fff;
    color: #161a23;
}
.elements
{
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.2s;
    pointer-events: none;
}
.banner.active .elements
{
    visibility: hidden;
    opacity: 0;
}
  .mastfoot 
{
    justify-content: center;
     display: flex;
    background-color: #21283a;
} 

 .cyber
{
    cursor: pointer;
    opacity: 0.3;
    text-decoration: none;
    color: #1ede6d;
}
.cyber:hover
{
    color: #ed325f ;
}
/* .test
{
    width: auto;
    height: auto;
    background: #1ede6d;
} */
.test 
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #161623;
}
/* .test::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#f00, #f0f);
    clip-path: circle(30% at right 70%);
    z-index: 0;
}
.text::after
{
    content: '';
    position: absolute;
    top: 100;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#2196f3, #e91e63);
    clip-path: circle(20% at 10% 10%);
} */
.container
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
    z-index: 1;
}
.container .card
{
    position: relative;
    width: 280px;
    height: 400px;
    margin: 30px;
    box-shadow: 20px 20px 50px rgb(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}
.container .card .content2
{
    padding: 20px;
    text-align: center;
    transform: translateY(0px);
    opacity: 1;
    transition: 0.5s;
}
/* .container .card:hover .content2
{
    transform: translateY(0px);
    opacity: 1;
} */
.container .card .content2 h2
{
    position: absolute;
    top: -80px;
    right: 30px;
    font-size: 8em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.container .card .content2 h3
{
    font-size: 1.8em;
    color: #fff;
    z-index: 1;
}
.container .card .content2 p
{
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}
.container .card .content2 a
{
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 15px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.vid
{

    border-radius: 5px;
}
.discord
{
    position: relative;
    right: 0px;
    bottom: -5px;
    max-height: 25px;
}
.discord:hover
{
    filter: invert(1);
}

/*now making it responsive*/
@media (max-width: 991px)
{
    .elements
  {
    visibility: hidden;
    opacity: 0;
  }
  header
  {
      padding: 20px 40px;
  }
  section
  {
    padding: 0 40px;
  }
  section::before
  {
      opacity: 0;
  }
  .content .contentBx h4
  {
      margin-bottom: 10px;
      /* margin-right: 50px; */
  }
  /* .simply
  {
      line-height: 10px;
  }
  .info
  {
      
  } */
  .content
  {
    position: relative;
    margin-left: 1px;
  }
  .content
  {
      margin: 50px 0;
      margin-right: 50px;
     
  }
  .vid
  {
      width: 300px;
      border-radius: 5px;
  }
  .men
  {
    right: -50px;
    opacity: 0.3; 
  }
  .banner.active .men
  {
      opacity: 0 !important;
  }
  .menu
  {
      align-items: center;
      padding-left: 0;  
  }
  .menu li a
  {
      color: #fff;
  }
  .content .contentBx h2
  {
      font-size: 3em;
      margin-top: 2px;
      margin-bottom: 0px;
  }
  .content .contentBx h3
  {
      font-size: 1.5em;
  }
  .content .contentBx h4
  {
      font-size: 1em;
      margin-bottom: 0px;
  }
  .content .contentBx a
  {
      padding: 6px 15px;
      margin-right: 5px;
  }
  .banner.active .sci,
  .banner.active .content,
  .banner.active .logo,
  .banner.active .men
  {
      transition: 0s;
  }
  .mastfoot 
{
    justify-content: center;
     /* display: flex; */
    background-color: #21283a;
}
.cyber
{
    cursor: pointer;
    opacity: 0.3;
    text-decoration: none;
    color: #1ede6d;
 
}
.banner
{
    padding: 0 20px;
}

}