/* Splash Page */
html {
    margin-top: 0!important;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
* {
    box-sizing: border-box;
}

/****** HEADER *******/
.sp-header {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 9;
}
.sp-header .brand {
    margin: 50px auto 0 auto;
}
.sp-header .splashtitle {
    color: transparent;
    display: none;
}
/****** FOOTER *******/
.sp-footer {
    background-color: #1A1A1A;
    text-align: center;
    padding: 20px 40px;
}
.sp-footer p,
.sp-footer p a  {
    font-size: 13px;
    color: white;
}
.sp-footer a {
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.sp-footer a:hover {
    opacity: .75;
}
.sp-footer p a {
    font-weight: 700;
}
.sp-footer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 10px 0;
}
.sp-footer ul li {
    display: inline-block;
    padding: 0 10px;
}
.sp-footer ul li a {
    color: #D1D1D1;
    font-size: 14px;
    line-height: 14px;
}

/****** CONTENT *******/
.sp-box {
    position: relative;
    padding: 120px 0 0 0;
    overflow: hidden;
}
.sp-box:after {
    content: "";
    position: absolute;
    display: block;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: linear-gradient(transparent, rgba(0,0,0, 1));
}
.sp-box:before {
    content: "";
    height: 4px;
    left: 0;
    bottom: 0;
    display: block;
    width: 0;
    background-color: #FF4640;
    position: absolute;
    z-index: 9;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.sp-box figure {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1;
    line-height: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.sp-box:hover figure {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.sp-box:hover:before {
    width: 100%;
}
.sp-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sp-box-caption {
    position: relative;
    z-index: 9;
    padding: 40px;
}
.sp-box-caption * {
    color: white;
    font-weight: 400;
}
.sp-box-caption h2 {
    font-size: 32px;
    line-height: 39px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family:"proxima-nova";
    margin-bottom: 15px;
}
.sp-box-caption p {
    font-size: 18px;
    line-height: 27px;
    color: #D1D1D1;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.sp-box-caption span.button {
    text-decoration: none;
    font-weight: 600;
    background: #EB0800;
    border: 1px solid #EB0800;
    display: inline-block;
    padding: 12px 40px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.sp-box-caption span.button:hover {
    background-color: black;
}
.sp-content .sp-box {
    background-color: black;
}
@media (min-width: 1050px) {
    .sp-content {
        background-color: black;
        display: flex;
        flex-wrap: nowrap;
    }
    .sp-content-col {
        width: 33.3333333%;
    }
    .sp-content .sp-box {
        display: flex;
        align-items: end;
        padding: 0;
        /*height: calc(100vh - 49px);*/
        height: 100vh;
    }

    .sp-footer {
        display: flex;
        flex-wrap: nowrap;
        height: 49px;
        padding-top: 11px;
    }
    .sp-footer-col {
        width: 50%;
        text-align: left;
    }
    .sp-footer-col:nth-child(2) {
        text-align: right;
    }
    .sp-footer ul,
    .sp-footer p {
        margin: 0;
        padding: 0;
    }
}
.venueimg {
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}
.venueimg.loaded {
    opacity: 1;
}

.youtube-background {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    /* z-index: 2; */
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    cursor: pointer;
}
.youtube-background.active {
    display: block;
    z-index: 2;
}

.youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
    min-width: 50%;
    min-height: 50%;
}

.youtube-background .only-desktop {
    display: none;
}
@media (min-width: 1050px) {
    .youtube-background .only-desktop {
        display: block;
    }
    .youtube-background .only-mobile {
        display: none;
    }
}