@charset "UTF-8";

html, body{
    margin: 0px;
    padding: 0px;
    background-color: #191919;
    font-family: 'Saira', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #FFFFFF;
    letter-spacing: 2pt;
    font-size: 12pt;
    text-align: left;
	cursor: default;
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
    color: inherit;
	cursor: default;
}

.header{
    position: fixed;
    margin-left: 40px;
    margin-top: 30px;
    width: 90%;
    mix-blend-mode: difference;
    z-index: 1;
    font-size: 10pt;
    letter-spacing: 2pt;
}

.headerLogo{
    float: left;
    width: 55px;
    margin-top: 4px;
    margin-right: -6px;
}

.contactButton{
    float: right;
    font-size: 10pt;
    border: 1px solid #FFFFFF;
    padding-left: 6px;
    padding-right: 6px;
    transition: background-color 0.5s ease-in-out;
    margin-top: -46px;
}

.contactButton:hover{
    background-color: #FFFFFF;
    color: #000000;
}

.sIcon{
    margin: 0px 9px 9px 9px;
    height: 15px;
    display: block;
    line-height: 15px;
	pointer-events:none;
}

.sIcon a{
	vertical-align: top;
}

.linksBar{
	width: 0px;
	height: 0px;
    opacity: 0;
    transition: 
		width 0.6s cubic-bezier(1, 0, 0.5, 1), 
		height 0.3s cubic-bezier(1, 0, 0.5, 1);
}

.linksBarVis{
    width: 255px;
    height: 50px;
    opacity: 1;
    transition: width 0.3s cubic-bezier(1, 0, 0.5, 1), 
		height 0.6s cubic-bezier(1, 0, 0.5, 1), 
		opacity 1s cubic-bezier(1, 0, 0.3, 1);
    margin-top: 8px;
}

.contentContainer{
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: -6px;
	text-align: center;
}

.mc{
	cursor: pointer;
}

.descriptionCont{
    padding: 60px;
    background-color: #FFFFFF;
    color: #000000;
}

.videoPreview{
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    margin-bottom: -6px;
}

.footer{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 22px;
    font-size: small;
    background-color: #FFFAFA;
    color: #000000;
}
