/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.main {
  width: 100%;
  height: 100vh !important;
  background: url("../img/bg/hero-bg-1.gif") center center !important;
  background-size: cover;
  position: relative; 
}

#particles-js{
  display: grid; 
  position: absolute; 
  justify-content: center; 
  top: 0; 
  bottom: 0; 
  right: 0;  
  left: 27%;
}

#hero .container {
  margin-top: 80px;
  display: grid;
  position: relative;
}

#hero .container .hero-content {
  width: 50vw;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 2.6em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: .85em;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero #particles-js{
    left: 0;
  }
  #hero .container {
    margin-top: 60px;
  }
  #hero .container .hero-content {
    width: 80vw;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero .btn-get-started {
    border-radius: unset;
  }
}

@media (max-width: 480px) {
  #hero .container{
    margin-top: 0;
    left: 0;
  }
  #hero .container .hero-content {
    width: 90vw;
  }
}