.home {
  width: 100%;
  height: 100vh;
  background-image: url("../images/banner-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  font-family: "Raleway", sans-serif;
  padding-top: 30px;
  position: relative;
}

.hero-img {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-img h1 {
  width: 100%;
  text-align: center;
  font-size: 35px;
  font-weight: 400;
  color: var(--white-color);
  line-height: 54px;
}

.hero-img h1 span {
  font-weight: 600;
}

.hero-img p {
  width: 100%;
  text-align: center;
  margin-top: 35px;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white-color);
}

.hero-img .discover {
  width: 140px;
  display: block;
  margin: auto;
  margin-top: 30px;
  font-size: 12px;
  padding: 9px 12px;
  background-color: var(--color-1);
  color: var(--white-color);
  border: 0;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-img .discover:hover {
  background-color: var(--color-2);
}
