/* --------------------------
   Location styles
-------------------------- */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    background-color: #000;
}
.btn-location {
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
    min-width: 12rem;
    padding: .5rem .5rem;
    text-transform: uppercase;
    transition: all 0.5s ease;
}
.btn-location:hover,
.btn-location:active,
.btn-location:focus {
    background-color: #fff;
    color: #000;
}
.location-home-nav {
    background-color: transparent;
}
.location-video {
    top: 0;
    height: 100%;
    background-color: #000;
    overflow: hidden;
    z-index: -1;
}
.location-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}
.location-video video {
    position: relative;
    z-index: 0;
}
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-split {
    display: flex;
    flex-direction: row;
    height: calc(90vh - 85px);
    position: relative;
}
.location-split .split {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.location-split .split-button {
    position: relative;
    z-index: 2;
    height: auto;
}
.left-split .split-button,
.left-split .split-btn {
    transform: translateX(-25%);
}
.right-split .split-button,
.right-split .split-btn {
    transform: translateX(25%);
}
.location-split .main-logo,
.center-split .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 34%;
    height: auto;
    z-index: 10;
    margin: 0;
}
.location-text {
    position: absolute;
    bottom: 1vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 11;
    max-width: 23rem;
    margin-left: auto;
    margin-right: auto;
}
.location-text h1 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 2rem;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}
.vh-10-spacer {
    background-color: black;
    height: 10vh;
}
.center-split {
    height: calc(90vh - 85px);
    position: relative;
    text-align: center;
    padding: 0 1rem;
}
.center-split .location-text .btn-location {
    margin-bottom: 2rem;
}



@media (max-width: 992px) {
    .ga-nav {
        height: 85px;
        position: fixed;
        width: 100%;
        z-index: 10;
    }
    .location-wrapper {
        position: relative;
        min-height: 100%;
        padding-top: 3rem;
    }
    .location-video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .location-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .location-video::after {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }
    .location-wrapper .location-mobile {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 0 1rem;
    }
    .location-mobile {
        padding-top: 5rem;
    }
    .location-mobile .main-logo {
        width: 90%;
        max-width: 25rem;
        padding: 2rem 0;
        height: auto;
    }
    .location-mobile .location-text {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto;
        padding: 3rem 1rem 0;
        color: #fff;
        text-align: center;
        max-width: 16rem;
    }
    .location-mobile .location-text h1 {
        color: #fff;
        font-size: 13px;
        margin-bottom: 2rem;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
    }
    video::-webkit-media-controls-start-playback-button {
        display: none !important;
        -webkit-appearance: none;
    }
}

