@charset "UTF-8";

.content { padding: 75px 0px 0px 0px; }
.section { padding: 80px 0px; }

.hero {
    height: 70vh;
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero-content
{
    position: relative;
    z-index: 100;
}

.hero-video
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70vh;
    overflow: hidden;
}

.hero-video:after
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    content: '';
}

.hero-video > video
{
    min-height: 100%;
    min-width: 100%;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-aspect-ratio: 1.4/1)
{
    .hero-video > video
    {
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.brand .brand-bw, .brand:hover .brand-color { display: block; }
.brand:hover .brand-bw, .brand .brand-color { display: none; }

.map { width: 75%; }
.map-content
{
    position: absolute;
    top: 10%;
    right: 1rem;
    width: 30%;
    text-align: right;
}


@media (max-width: 640px) {

    .section { padding: 20px 0px; }

    .map { width: 100%; }

    .map-content
    {
        padding: 1rem;
        position: static;
        width: 100%;
        text-align: left;
    }

}