* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hero {
  width: 100%;
  height: 100vh;
  background: #000;
  background-image: url(img/back.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  color: #fff;
  padding: 0 8%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  width: 160px;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
}

.hero h1 {
  font-size: 75px;
  margin-top: 12%;
}

.hero button {
  background: #393939;
  border: 0;
  outline: none;
  padding: 15px 35px;
  color: #fff;
  margin-top: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
}

.indicator span {
  display: inline-block;
  background: #3a3a3a;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  margin-right: 10px;
}

.indicator {
  margin-top: 150px;
}

.indicator span.active {
  background: #bfbfbf;
}

.cta {
  position: absolute;
  width: 25%;
  min-width: 250px;
  right: 8%;
  bottom: 100px;
}
