
.list-item{
    text-decoration: none;
    color: grey;
    font-size: 22px;
}

nav{
    display: flex;
    flex-direction: row;
    height: 20vh;
    
    
}


.grow-list{
    display: flex;
    /* border: 1px solid green; */
    flex: 1 1 10px;
}
nav .list{
    display: flex;
    justify-content:space-between;
    align-items: center;
    list-style-type: none;
    /* border: 1px solid red; */
    margin: auto;
    flex: 1;
    
    
}


.brand-logo{
    margin: auto;
    /* border: 1px solid black; */
    
}



.button-group{
    /* border: 1px solid yellow; */
    margin: auto;
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    
    
    
    
}

.button-group .nav-button{
    background-color: #5A20CB;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    color: white;
    
    
   
    
}

.banner-container{
  display: flex;
  flex-direction: row;
  flex: 1;
  height: 80vh;  
}

.col{
    display: flex;
    flex: 1;
    min-height: 100%;
}

.col-2 {
    overflow:hidden;
    
}

.col-2 img{
    
    height: 500px;
}

.col-1 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: black;
    
}

.col-1 h1 {
    font-size: 75px;
    margin: 20px 0;
    color: purple;
  }

  h1 span{
    color: #5A20CB;
  }

  .col-1 p {
    font-size: 20px;
    margin-right: 100px;
    color: grey;
  }

  .btn{
    background-color: #5A20CB;
    border: none;
    padding: 20px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    margin: 50px 0;
  }