#hero {
    background-color: var(--primary-color);
    height: auto;
}
#hero .logo {
    display: flex; /* Use flexbox for the container */
    align-items: flex-start; /* Align items to the top */
}
#hero .logo img {
}
#hero .logo-tagline {
    display: flex; /* Use flexbox for the text container */
    flex-direction: column; /* Stack items vertically */  
    text-align: left;
    border-left: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 0;
    margin-left: 5px;
    padding-left: 5px;
    font-size: 130%;
}
#hero .logo-tagline span {
}
#hero .logo-line1 {
    font-weight: bold;
}

#hero .logo-line1 {
    
}

#about .container {
    padding: 50px 0;
}

