@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

#hero {
    min-height: 90vh;
    background: linear-gradient(45deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, .1)), url(../../images/hero-bg-01.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; 
}
#hero h1{
    font-size: 4rem;
}
#hero .logo {
    display: none;
}



#hero .site-logo {
    width: 100px;

}

.site-description{
    text-align: left;
}

#about .row {
    align-items: center;
}

.lp {
    padding: 1rem 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: none;
    border: none;
    color: var(--primary-color);
}

.lp h5 {
    margin: 0;
    font-weight: bold;

}



#hero .col-lg-6:last-child {
    display: none;
}