

.restrict
{
  width: 100%;
  height: auto;
  display: none;
}
.restrict p, .restrict i
{
  font-size: 0.8em;
  display: inline-block;
  margin: 0;
}
.restrict i
{
  color: #f00;
}
/* Showcase */
.showcase {
  height: calc(100vh - 300px);
  background-color: var(--primary-color);
  color: var(--light-color);
  position: relative;
}

.showcase h1 {
  font-size: 40px;
}



.showcase-form {
  margin: auto;
}

.btn
{
  width: 100%;
  transition: all 0.15s ease-in-out;
}

.btn-outline {
  background-color: transparent;
  border: 1px #000 solid;
  margin-top: 3px;
  padding: 2px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.25s ease-in-out;
  
}
.btn-outline:hover
{
  color: #fff;
  background-color: #000;
}

.showcase-text {
  animation: slideInFromLeft 1s ease-in;
}

.showcase-form {
  position: relative;
  top: 60px;
  min-height: auto;
  width: 400px;
  padding: 40px;
  z-index: 100;
  justify-self: flex-end;
  animation: slideInFromRight 1s ease-in;
}

.showcase-form .form-control {
  margin: 30px 0;
}

.showcase-form input[type='text'],
.showcase-form input[type='password'],
.showcase-form input[type='email'] {
  border: 0;
  border-bottom: 1px solid var(--default-text-color);
  width: 100%;
  padding: 3px;
  font-size: 16px;
  color: var(--dark-color);
  background-color: var(--light-background);
}


.showcase-form input:focus {
  outline: none;
}


/* Tablets and under */
@media (max-width: 768px) {
  .grid,
  .showcase .grid,
  .stats .grid,
  .cli .grid,
  .cloud .grid,
  .features-main .grid,
  .docs-main .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .showcase {
    height: auto;
  }

  .showcase-text {
    text-align: center;
    margin-top: 40px;
    animation: slideInFromTop 1s ease-in;
  }

  .showcase-form {
    justify-self: center;
    margin: auto;
    animation: slideInFromBottom 1s ease-in;
    
  }

  .cli .grid > *:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .features-head,
  .features-sub-head,
  .docs-head {
    text-align: center;
  }

  .features-head img,
  .features-sub-head img,
  .docs-head img {
    justify-self: center;
  }

  .features-main .grid > *:first-child,
  .features-main .grid > *:nth-child(2) {
    grid-column: 1;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .navbar {
    height: 110px;
  }

  .navbar .flex {
    flex-direction: column;
  }

  .navbar ul {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .showcase-form {
    width: 300px;
  }
}


#tsparticles
{
  background-color: transparent;
}

@keyframes fade {
  0% {opacity:0;
      display: none;}
  1% {opacity:0;
      display: block;}
  100% {opacity:1;
        display: block;}
}

@-moz-keyframes fade {
  0% {opacity:0;
    display: none;}
100% {opacity:1;
      display: block;}
}

@-webkit-keyframes fade {
  0% {opacity:0;
    display: none;}
100% {opacity:1;
      display: block;}
}

@-o-keyframes fade {
  0% {opacity:0;
    display: none;}
100% {opacity:1;
      display: block;}
}

@-ms-keyframes fade {
  0% {opacity:0;
    display: none;}
100% {opacity:1;
      display: block;}
}