body {
    margin: 0;
    padding: 0;
}


.line {
  border-left: 2px solid hsl(0, 0%, 100%);
  height: 55px;
}

.navbar{
    position: relative;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    background-color: #000000;
    padding: 20px 0 20px 0;
}

.logo{
  margin: 0 100px;
  height: 40px;
}

.list{
  display: flex;
  margin-right: 600px;
}

.list-item:nth-child(1)::after{
  content: '';
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 15px;
}

.list-item{
  color: #ffffff;
  list-style: none;
  margin: 0 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.button-small{
  background-color: #BA0CC5;  
  font-size: 18px;
  border-radius: 10px;
  padding: 10px 30px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  border: none;
  font-weight: 500;
}

.hero{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
  text-align: center;  
}

.hero::before{
  content: '';
  background: url(./assets/bg.png) no-repeat center center/cover;
  /* background-size: cover; */
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}


.hero-heading{
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  width: 900px;
  margin-top: 150px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-description{
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  margin-top: 0;
  padding-top: 0;
}

.button-large{
  color: #ffffff;
  background-color: #BA0CC5;
  font-size: 30px;
  border-radius: 10px;
  margin-top: 25px;
  padding: 20px 30px;  
  font-family: 'Poppins', sans-serif;
  border: none;
  text-transform: lowercase;
  font-weight: 600;
}

.button-large::first-letter{
  text-transform: uppercase;
}

/* Mobile Responsiveness */

@media (max-width: 1800px){

  .navbar{
    justify-content: center;
    align-items: center;
  }

  .list{
    margin: 0;
  }

}

@media (max-width: 1250px){

  .navbar{
    flex-direction: column;
  }

  .line{
    transform: rotate(90deg);
    height: 100px;
  }

  .button-small{
    margin-top: 3em;
    font-size: 0.8em;
  }

  .logo{
    height: 2em;
  }

  .list-item{
    font-size: 0.8em;
  }

  .hero-heading{
    font-size: 2em;
    width: 600px;
    margin-top: 80px;
  }

  .hero-description{
    font-size: 1em;
    width: 600px;
    margin: 2em 0;
  }

  .button-large{
    font-size: 0.8em;
  }


}

@media (max-width: 620px){

  .list{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .list-item:nth-child(1)::after{
    border-width: 0 2px 2px 0;
  }

  .list-item{
    margin: 1em 0;
  }


  .hero-heading{
    font-size: 1.5em;
    width: 350px;
  }

  .hero-description{
    font-size: 1em;
    width: 350px;
    margin: 2em 0;
  }


}