#hero {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 90vh;
    padding: 0 10px;
}
#hero #logo {
    width: 100px;
    height: auto;
    margin-top: 30px;
}
#hero #title {
    font-size: 36px;
    text-align: center;
    width: 100%;
    line-height: 1.2;
    font-family: "Bebas";
    color: #f2f2f2;
    font-weight: 300;
    margin-top: 30px;
    max-width: 500px;
}
#hero .cta {
    margin-top: 30px;
}


#hero #location {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    text-decoration: none;
    max-width: 500px;
    margin-top: 30px;

}

#hero #location .left {
    width: fit-content;
    display: flex;
    flex-direction: column;
}

#hero #location .left svg {
    width: 16px;
    height: auto;
}

#hero #location .right {
    width: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#hero #location p {
    width: 100%;
    height: fit-content;
    word-wrap: break-word;
    text-align: left;
    font-size: 14px;
    color: #d5d5d5;
}

#hero #location p.main {
    font-weight: 600;
    color: #e5e5e5;
}