body {
    background: #FFFFFF;
}

.hero_header
{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

h1
{
    font-family: "BigShouldersDisplay-Bold", sans-serif;
    font-size: 2.8rem;
    line-height: 2.8rem;
}

h3
{
    font-family: "BigShouldersDisplay-Bold", sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #CC0000;
    text-align: center;
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.utilities
{
    margin: 15px;
    margin-bottom: 3rem !important;
}

.utility_col
{
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.utility_container
{
    position: relative;
    margin: 2px;
    border-radius: 5px;
    overflow: hidden;
}

.utility_container:before
{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.utility_heading {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: #FFFFFF;
    font-family: "BigShouldersDisplay-Bold", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; /* clave */
    top: 0;
    justify-content: flex-end; /* abajo */
    align-items: center; /* centrado horizontal */
    padding-bottom: 15px;
    z-index: 9;
}

.utility_heading p
{
    margin: 0 0 10px 0;
}

.utility_heading a
{
    margin: 0;
    font-size: 1rem;
    color: #FFF;
    border: 1px solid #FFF;
    width: 80%;
    padding-top: 3px;
    padding-bottom: 3px;
    text-decoration: none;
}
.utility_heading a:hover
{
    color: #000;
    background-color: #FFF;
}

@media screen and (orientation: portrait){
    .hero_header
    {
        height: 95vh;
    }

    h1
    {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .utilities
    {
        margin: 0;
        margin-bottom: 2rem !important;
    }

    .utility_container
    {
        margin: 0;
        border-radius: 0;
    }

    .utility_heading p
    {
        margin: 0px;
        margin-bottom: -10px;
    }

    .utility_heading a
    {
        display: none;
    }
}