*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* .container{
    display: flex;
    flex-direction: column;
    align-items: center;
} */

.navbar{
    height: 15vh;
    /* width: 100vw; */
    color: #ffffff;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vh;
    
}

.logo{
    height: 40px;
}

.line{
    background-color: #ffffff;
    height: 6vh;
    width: 2px;
    /* margin-left: -450px; */
}

.grow-list{
    width: 70vw;
}

.list{
    display: flex;
}

.list-item{
    list-style: none;
    margin-left: 60px;
}

.list-item:first-child{
    margin-left: 0px;
}

.button-small{
    color: #ffffff;
    background-color: #7B448F;
    padding: 10px 30px ;
    border-radius: 8px;
    border: none;
}

.hero::before{
    content: '';
    background-image: url('assets/bg.png');
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -2;
    background-position: cover;
    background-size: cover;
    height: 930px;
}

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid black; */
    width: 50%;
    color: #ffffff;
    margin-left: 26vw;
}

.hero-heading{
    text-align: center;
    font-size: 70px;
    margin-top: 10vh;
}

.hero-description{
    font-size: 26px;
}

.button-large{
    font-size: 25px;
    margin-top: 10vh;
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #7B448F;
    border: none;
}