.font-bold {
    font-weight: 500;
}

.font-regular {
    font-weight: 400;
}

.text-left {
    text-align: left;
}

.text-nowrap {
    white-space: nowrap;
}

.text-subtext {
    font-size: 10pt;
}

body {
    font-family: "Montserrat";
    min-width: 100vw;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.hero-text {
    text-align: center;
    position: absolute;
    left: 0;
    top: 30vh;
    width: 100%;

    background-color: rgba(0, 0, 0, 0.25);
    padding: 10px 0 15px 0;
    color: white;
}

.hero-text h1 {
    font-size: 55pt;
}

.hero-text h2 {
    font-size: 20pt;
    font-weight: 300;
}

.hero-text h3 {
    font-size: 20pt;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
}

.hero-text .buttons {
    margin-top: 10px;
}

.hero-text .buttons .btn {
    font-size: 20pt;
    margin: 0 15px 0 15px;
}

.btn-navy {
    background-color: navy;
    color: white;
}

.btn-white {
    color: navy;
    background-color: white;
}

.btn-grey {
    background-color: grey;
    color: white;
}