@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; 
}
section
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    align-items: center;
    background: #21283a;
    overflow-x: hidden;
}
section::before
{
    content: '';
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #ed325f;
    transition: 1s;
}
section.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;
}
.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: 10px;
}
.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.2em;
    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: 20px;
    font-family: 'Ubuntu', sans-serif;
    
}
.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 ;
}
.discord
{
    position: relative;
    right: 0px;
    bottom: -5px;
    max-height: 25px;
}
.discord:hover
{
    filter: invert(1);
}

.dis-area{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    padding: 8%;   
    background-color: #21283a;
}

.discord-wid{
    height: 600px;  
    width: 100%;
}

/*now making it responsive*/
@media (max-width: 991px)
{
    .elements
  {
    visibility: hidden;
    opacity: 0;
  }
  header
  {
      padding: 20px 40px;
  }
  section
  {
    padding: 0 30px;
  }
  section::before
  {
      opacity: 0;
  }
 
  .content .contentBx h4
  {
      margin-bottom: 10px;
  }
  .content
  {
      position: relative;
      margin: 50px 0px;
      margin-right: 50px;
  }
  .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: 2.2em;
  }
  .content .contentBx h3
  {
      font-size: 1.3em;
  }
  .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;
 
}
}