/* ---- reset ---- */ 

/* ---- particles.js container ---- */ 
#particles-js{ 
    position:fixed; 
    width: 100%; 
    height: 100%;
    animation-name: stars;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 56% 58%, 56% 31%, 50% 15%, 44% 31%, 44% 58%, 0 65%);
    z-index:-1;
  } 
/* ---- stats.js ---- */ 

@keyframes stars {
    0%   {opacity: 0;}
    20%  {opacity: .8;}
    40%  {opacity: .8;}
    60%  {opacity: .8;}
    80%  {opacity: 0;}
    100% {opacity: 0;}
  }

  @media (max-width: 768px) {
    #particles-js {
     display: none;
    }
  }


/* ---- reset ---- */ 

/* ---- particles.js container ---- */ 
#particles-js-1{ 
  position: absolute;
  width: 100%; /*
  animation-name: stars;
  animation-duration: 15s;
  animation-iteration-count: infinite; */
  opacity: 100%;
  z-index: 0;
 } 
/* ---- stats.js ---- */ 

/* 
@keyframes stars {
  0%   {opacity: 0;}
  20%  {opacity: 50%;}
  40%  {opacity: 80%;}
  60%  {opacity: 50%;}
  80%  {opacity: 0;}
  100% {opacity: 0;}
}

@media (max-width: 768px) {
  #particles-js {
    animation-duration: 20s;
  }
}
*/

  @media (max-width: 768px) {
  #particles-js-1 {
   display: none;
  }
}


