
/*Utilities*/
html,
body {
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

.clearfix {
  clear: both;
}

/*Buttons*/
.button {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Open Sans;
  font-size: 10px;
  letter-spacing: .2em;
  padding: 15px 30px;
  margin: 0 15px;
  min-width: 80px;
  color: #ffffff;
}

@media (max-width: 1170px) {
  .button {
    padding: 10px 20px;
    font-size: 8px;
  }
}

.subscribe-form .btn-solid,
.btn-solid {
  border: 2px solid #05adff;
  background: #05adff;
  color: #ffffff;
  transition: color .2s, background .2s, border .2s;
}

.subscribe-form .btn-solid:hover,
.btn-solid:hover {
  color: #ffffff;
  background: #007bb7;
  border: 2px solid #007bb7;
}

.subscribe-form .btn-ghost,
.btn-ghost {
  border: 2px solid #05adff;
  color: #ffffff;
  transition: color .2s, background .2s;
}

.subscribe-form .btn-ghost:hover,
.btn-ghost:hover {
  color: #ffffff;
  background: #05adff;
}

.btn-round {
  border-radius: 100px;
}

/*Hero*/
.hero {
  background: #333;
  background: url(../img/background.jpg);
  background-size: cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  box-sizing: border-box;
}

.hero .particles-js-canvas-el {
  position: fixed;
  display: none;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero.active .particles-js-canvas-el {
  display: block;
}

.centered {
  z-index: 1;
  width: 700px;
}

.logo {
  display: block;
  width: 400px;
  position: absolute;
  top: 0;
  right: 140px;
}

.heading {
  margin-top: 80px;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.4em;
  font-weight: 100;
}

@media (max-width: 1170px) {
  .heading {
    font-size: 16px;
    margin-top: 40px;
  }
}

.description {
  font-family: Raleway;
  color: #ffffff;
  text-align: center;
  line-height: 2.5em;
  letter-spacing: .15em;
  max-width: 600px;
}

@media (max-width: 1170px) {
  .description {
    font-size: 13px;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .description {
    font-size: 11px;
    width: 300px;
  }
}

.buttons {
  margin: 30px 0 0;
  text-align: center;
}

@media (max-width: 1170px) {
  .buttons {
    margin: 40px 0 0;
  }
  .buttons .button {
    margin-top: 10px;
  }
}

.social-text {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100vw;
  text-align: center;
}

.social-text a {
  color: #b3b3b3;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Montserrat;
  font-size: 9px;
  letter-spacing: .2em;
  padding: 0 0 0 .2em;
  margin: 0 25px;
  transition: color .4s;
}

.social-text a img{
  transition: transform .2s;
}

.social-text a img:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}

@media (max-width: 1170px) {
  .social-text a {
    font-size: 8px;
  }
}

.social-text a:hover {
  color: #ffffff;
}


form {
  position: relative;
  width: 100%;
}

form input {
  width: 100%;
  padding-left: 30px;
  box-sizing: border-box;
  height: 70px;
  background: #191a31;
  border: 0;
  border-radius: 50px;
  color: #858585;
  box-shadow: 5px 5px 5px #131426 inset;
  font-weight: 600;
}

form input:placeholder-shown+button {
  opacity: 0;
  pointer-events: none;
}

form button {
  position: absolute;
  border: none;
  display: block;
  height: 60px;
  line-height: 16px;
  font-size: 15px;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  background: #fd2e3b;
  padding: 12px 45px;
  outline: none;
  cursor: pointer;
  transition: .1s;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
}

form button:hover {
  background: #fff;
  color: #fd2e3b;
}

.button-group li {
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
}

.button-group li a.google-button {
  margin-right: 22px;
}

.button-group li a {
  font-family: Montserrat;
  width: 150px;
  border: 0px solid #fff;
  padding: 18px 10px 18px 90px;
  position: relative;
  font-size: 20px;
  color: #fff;
  display: block;
  background: #191a31;
  box-shadow: 5px 5px 5px #131426 inset;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s;
}

.button-group li a:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
}

.button-group li a img {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.button-group li a span {
  display: block;
  font-size: 13px;
  margin-bottom: -5px;
}

img {
  max-width: 100%;
}

img {
  vertical-align: middle;
  border-style: none;
}

.button-group{
  margin: 30px 0 0;
  padding-left:80px;
}

@media (max-width: 480px) {

.centered {
  width: 350px;
  margin-top: 6rem;
}

.heading {
  font-size: 20px;
  letter-spacing: .8em;
}

.button-group {
  padding-left: 0px;
}

.logo {
  width: 240px;
  right: 15px;
  top: -14px;
}

form button{
  padding: 12px 30px;
  height: 50px;
  font-size: 13px;
}

.social-text a img{
  width: 60px;
  height: auto;
}

form input {
  height: 58px;
  font-size: 11px;

}

.button-group {
  margin: 0;
}

.button-group li {
  margin-top: 1.3rem;
}

.button-group li a {
  width: 90px;
  padding: 22px 10px 22px 60px;
  font-size: 13px;
}

.button-group li a img {
  left: 20px;
  width: 26px;
}

}

@media (max-width: 320px) {

  .heading {
    font-size: 18px;
    letter-spacing: .7em;
  }

  .button-group li a {
    width: 86px;
    padding: 22px 10px 22px 50px;
    font-size: 12px;
  }

  .social-text {
    bottom: 20px;
  }

  .social-text a img {
    width: 45px;
  }

  .logo {
    width: 190px;
    top: -8px;
  }

  .button-group li a img {
    width: 22px;
  }

}