
/*HERO*/
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 95vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.heroContent {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
}

.heroSlogan {
  text-align: right;
  line-height: 3rem;
  margin-left: auto;
  word-spacing: 5px;
  width: 40%;
  font-size: 2.5rem;
}

/*BULLET POINT */

.bulletPoint {
    display:flex;
    justify-content:center;
  max-width: 70%;
  max-height: 100px;
  background-color: #020202;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 60px;
  margin: 0 auto;
  position: relative;
  bottom: 40px;
  transition: transform 0.1s linear;
  text-align: center;

}

.bullet-button{
        position: absolute;
        bottom:-24px;
    }




