@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", 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;
    text-align: center;
}

#hero #hero-img {
    display: none;
}

#hero .col-lg-6 {
    width: 100%;
        display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#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;

}