:root {
    /*
  --fullscreenVideoHeight: #1e90ff;
  --mobileFullscreenVideoHeight: #ffffff; 
  */
}

@font-face {
    font-family: BlairMdITC_TT_Medium;
    src:url("/fonts/blairmditc_tt_medium.ttf");
}

@font-face {
    font-family: Sackers_Gothic_Light_AT;
    src:url("/fonts/Sackers Gothic Light AT.otf");
}

@font-face {
    font-family: Sackers_Gothic_Std_Heavy;
    src:url("/fonts/Sackers Gothic Std Heavy.otf");
}

body
{
    padding: 0px !important;
    margin: 0px !important;
    background-color:black;
    font-family: Sackers_Gothic_Light_AT;
}



@keyframes menuFadeIn {
    0%
    {
        opacity: 0;
    }
    100% 
    {
        opacity: 1;
    }
}





.vimeoPlayer-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:black;
    overflow: hidden;
}
#videoPlayer, .FullScreenVideoPlayer {
    width: 100vw;
    /*height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    /*min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.gridVideoList {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: repeat(2,1fr);
    /*grid-auto-rows: 24vw;*/
    grid-gap: 0px;
    padding: 0px;
    margin: 0px;
    justify-content: center;
    justify-items: center;
    width: 100%;
    background-color:black;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}
.VideoCell 
{
    position:relative;
    transition: transform 1s 0s;
    display: grid;
    padding: 0px;
    justify-items: center;
    border-style: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
    overflow:hidden;
    color: black;
    font-size: calc(var(--textBaseSize) * 0.4);
    /*width: fit-content;*/
    min-width: 100%;
    /*min-height:24vw;*/
    min-height:27.5vw;
    box-sizing: border-box;
    background-color:black;
}

.fullscreenVideo{
    grid-column: 1 / 3;
    padding: 0px;
    margin: 0px;
    /*grid-row: span 2;*/
    height:55.125vw;
    position:relative;
    transition: transform 1s 0s;
    display: grid;
    padding: 0px;
    justify-items: center;
    border-style: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
    overflow:hidden;
    color: black;
    /*font-size: min(0.7em,2vh);*/
    /*width: fit-content;*/
    min-width: 100%;
    box-sizing: border-box;
    
}

.BannerVideo {
  grid-column: 1 / 3; /* span from grid column line 1 to 3 (i.e., span 2 columns) */
}

.VideoCell:hover .gridVideoThumbnail
{
    visibility:hidden;
}

.VideoCell:hover .gridVideo 
{
    visibility:visible;
    display: grid;
}
.gridVideo{
    visibility:hidden;
    display: none;
    position:relative;
    align-items: center;
    width:100%;
    height:100%;
    
    
}
.videoElementSizer
{
    /*display:none;*/
    display: grid;
    position:absolute;
    align-items: center;
    /*visibility:hidden;*/
    width: var(--videoWidth,100%);
    
    overflow:hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.videoBannerSizer{
    /*--videoWidth: 300%; --bannerWidth: 150%;*/
    color: var(--name);
    width:var(--bannerWidth);
}
.textOverlay
{
    /*visibility:hidden;*/
    opacity:0;
    /*transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in;
    transition-delay: 0s;*/
    /*transition: visibility 0s linear 0s, opacity 30000ms;*/
    display: grid;
    align-items: end;
    z-index:99;
    width:90%;
    height:90%;
    overflow:hidden;
    position:absolute;
    top:5%;
    left:5%;
    color:white;
    /*text-shadow:2px 2px 2px black;*/
}
.VideoCell:hover .textOverlay
{
    opacity:1;
    /*animation: 6s fadeIn;
    animation-fill-mode: forwards;*/
}
.fullScreenText{
    position:relative; 
    text-align: center; 
    top:80vh; 
    color:white; 
    margin:auto; 
    z-index:1001;
    color:white;
    padding: calc(var(--textBaseSize) * 0.55);
}
.titleText{
    font-size: calc(var(--textBaseSize) * 0.55);
    line-height:1.5;
}
.detailsText{
    font-size: calc(var(--textBaseSize) * 0.35);
    line-height:1.2;
}





    @keyframes fadeIn {
        50% 
        {
            opacity: 0;
        }
        100% 
        {
            opacity: 1;
        }
    }


    .VideoCell .standardVideoPlayer
    {
        display:block;
        visibility:visible;
    }
    .VideoCell .bannerVideoPlayer
    {
        display:none;
        visibility:hidden;
    }
    
    .bannerVideo .standardVideoPlayer{
        display:none;
        visibility:hidden;
    }
    .bannerVideo .bannerVideoPlayer{
        display:block;
        visibility:visible;
    }
    
    


@media screen and (orientation: landscape) and (max-width: 1000px)
{
    .bannerThumbnail{
        content: var(--imgBannerSize1200) !important;
    }
    body{
        /*font-family: Sackers_Gothic_Std_Heavy;*/
    }
    
}

@media (orientation: portrait) and (max-width: 1000px)
{
    body{
        /*font-family: Sackers_Gothic_Std_Heavy;*/
    }
    .bannerVideo .standardVideoPlayer
    {
        display:block;
        visibility:visible;
    }
    .bannerVideo .bannerVideoPlayer
    {
        display:none;
        visibility:hidden;
    }
    .gridVideoList 
    {
        grid-template-columns: repeat(1,1fr);
        /*background-color: green;*/
        /*grid-auto-rows: 49vw;*/
        box-sizing: border-box;
        grid-gap: 0px;
        padding: 0px;
        margin: 0px;
    }
    .VideoCell 
    {
        font-size: calc(var(--textBaseSize)* 0.4);
        /*max-width: 45% !important;*/
        /*font-size: min(4vw,7vh) !important;*/
        background-color: black;
        box-sizing: border-box;
        /*min-height:49vw;*/
        min-height:55vw;
    }
    .videoBannerSizer{
        /*--videoWidth: 300%; --bannerWidth: 150%;*/
        color: var(--name);
        width:var(--videoWidth);
    }
    .BannerVideo 
    {
        /*grid-column: 1; /* span from grid column line 1 to 3 (i.e., span 2 columns) */
    }
    .bannerThumbnail{
        content: var(--imgSize800) !important;
    }
}



.gridVideoThumbnail {
    width:100%;
    height:100%;
    
    
    /*aspect-ratio: auto;
    
    min-width: 100%;
    min-height:100%;*/
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

button {
    appearance: auto;
    font-family: Sackers_Gothic_Light_AT;
    text-rendering: auto;
    color: buttontext;
    letter-spacing: normal;
    word-spacing: normal;
    /*line-height: normal;*/
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    align-items: flex-start;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    margin: 0em;
    padding-block: 0px;
    padding-inline: 0px;
    border-width: 0px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
}

ul {
    list-style-type: disc;
}