*
{
    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: #21283a;
    transition: 1s;
     visibility: hidden;
} 
section.active::before
{
    background: #21283a;
    box-shadow: 0 0 0 12000px #1ede6d;
    visibility: visible;
}

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;
}  
.content .contentBx
{
    position: relative;
    max-width: 600px;
    line-height: 36px;
    transform-origin: right;
}
.content .contentBx a
{
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
    background: #ed325f;
    letter-spacing: 2px;
}
.content .contentBx a:hover
{
    letter-spacing: 4px;
    background: #fff;
    color: #111
}
.content p
{
    font-size: 1em;
    color: #fff;
    margin: 10px 0 20px;
    font-weight: 300;
    
}
.men 
{
    position: absolute;
    z-index: 0;
    bottom: 10;
    right: 150px;
    max-width: 400px;
    visibility: hidden;
}
.banner.active .content,
.banner.active .logo
{
    transform: scale(0);
    transform-origin: left;
}
.banner.active .men
{
    visibility: visible;
}
.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;
}
.banner.active iframe
{
  visibility: hidden;
}

.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;
} 
.mastfoot 
{
    justify-content: center;
     display: flex;
    background-color: #21283a;
} 

 .cyber
{
    cursor: pointer;
    opacity: 0.3;
    text-decoration: none;
    color: #1ede6d;
}
.cyber:hover
{
    color: #ed325f ;
}

.form2
{
    width: 100%;
    margin-top: 60px;

}

 /* iframe
{
    justify-content: center;
    padding: 10px;
    margin: 50px;
}  */
.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
  {
      margin: 50px 0;
  }
  .men
  {
    right: -50px;
    opacity: 0.3; 
  }
  .banner.active .men
  {
      opacity: 0 !important;
  }
  .menu
  {
      align-items: center;
      padding-left: 0;  
  }
  .menu li a
  {
      color: #fff;
  }
 
  .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;
 
}
.form2
{
    width: 100%;
    margin-top: 0px;

}
}  