body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-container {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: #002647;
    display: flex;
    flex-wrap: wrap;
}

.navbar .logo {
    padding: 1rem;
    flex: 1 1 60%;
}

.navbar .logo img {
    width: 100%;
    max-width: 300px;
    min-width: 150px;
}

.navbar .buttons {
    display: flex;
    justify-content: flex-end;
    flex: 1;

}

.buttons .btn {
    padding: 1rem 1.5rem;
    text-align: center;
    border: 1px solid #fff;
    flex: 1;
	font-size: 1.2rem;
}

.updates p {
    padding: .5rem 1rem;
}

.hero {
    background: url('https://www.sdmesa.edu/spring/images/spring_2022_header.jpg');
    min-height: 500px;
    background-size: cover;
}

.dates {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.date {
    flex: 1 0 20%;
    border: 1px solid #ddd;
    align-self: stretch;
    padding: .75rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.options {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.options {
    display: flex;
    margin: 1rem;
    flex-wrap: wrap;
}

.option {
    border: 1px solid #ddd;
    flex: 1 1 30%;
    padding: .5rem;
}

.hero {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.text-block {
    margin: 2rem;
    padding: 2rem 3rem;
    background: #002647d1;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #002647;
}

h1 {
    font-size: 3.2rem;
    text-transform: uppercase;
    margin-top: 0;
    line-height: 1;
}

.text-block .label {
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
}

.text-block .subLabel {
    font-size: 1rem;
}

.text-block .data {
    font-size: 1.3rem;
}

.text-block ul {
    padding: 0;
}

.text-block li {
    list-style-type: none;
    margin-bottom: 1rem;
}

.text-block li span {
    display: block;
}

.text-block p {
    margin-bottom: 2rem;
}

.ctas {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.cta {
    flex: 1 1 45%;
    border: 1px solid #ddd;
    padding: 15px;
    margin: 0 5px;
}



/* helpers */
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media  screen and (max-width: 776px) {
    .hero {
        justify-content: center;
    }

    .updates {
        text-align: center;
    }

    .text-block {
        flex: 1;
        text-align: center;
        align-self: stretch;
        border-radius: 0;
        border: none;
        margin: 0;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-basis: 100%;
    }

    .logo {
        text-align: center;
    }
}

