body{
    font-family: 'Fakt Pro';
    background:#000;
    color: #FFF;
    letter-spacing: 1px;
}
input,
button,
textarea,
select{
    font-family: 'Fakt Pro';
}
#page_wrapper{
    overflow:hidden;
    height:calc((var(--vh, 1vh) * 100));
}
/*** HEADER ***/
#header{
    padding: 25px 35px;
    z-index: 99;
}
#header_logo{
    float:left;
    position: relative;
}
#header_logo img{
    float:left;
    width: 95px;
}
#header_menu{
    float:right;
    line-height:25px;
}
#header_menu a{
    display: inline-block;
    color: #FFF;
    height: 25px;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    margin: 0 10px;
}
#header_menu .info_link{
    font-size:14px;
    font-weight:bold;
    transform:translatey(-1px);
}
#header_menu img{
    width:15px;
    transform: translateY(1px);
}
#open_about img{
    transform: scale(1.7);
}

/*** VIDEO SECTION ***/
#landing_section{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
#video_background_wrapper {
	height: 100vh;
    background: #181818;
	overflow: hidden;
}
#video_background{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit:cover
}
#mute_button{
    position: absolute;
    bottom: 20px;
    left: calc(50% - 25px);
    width: 46px;
    height: 46px;
    border: 2px solid #FFF;
    border-radius: 50%;
    color: #FFF;
    line-height: 48px;
    text-align: center;
    font-size: 20px;
}
#mute_button.muted i:before{
    content:'\f026';
}
#about_sidebar{
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: calc(var(--vh, 1vh) * 100);
    box-sizing: border-box;
    background: #e7386f;
    z-index:9;
    transform:translatex(100%);
    transition:all 0.5s;
}
.about_active #about_sidebar{
    transform:translatex(0);    
}
#about_overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:5;
    opacity:0;
    visibility:hidden;
    transition:all 0.5s;
}
.about_active #about_overlay{
    opacity:1;
    visibility:visible;  
}
#about_content{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    max-width:800px;
    padding: 30px;
    color: #000;
    transform:translate(-50%, -50%);
}
#about_content p {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight:500
}
#about_content p:last-child {
    margin-bottom:0;
}
#about_logo img{
    width: 300px;
    transform: translateX(-10px);
}
#about_content .sp1,
#about_content .sp2{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}
#about_content .sp2{
    margin-bottom:40px;
}
#close_sidebar{
    position: absolute;
    bottom: 30px;
    left: calc(50% - 25px);
    width: 28px;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 50%;
}
#youtube_video{
	height: 100%;
}
#youtube_video:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 20%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 20%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
    z-index: 5;
}
#youtube_video iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
@media(max-width:800px) {
    #header {
        padding: 20px;
    }
    #mute_button {
        bottom: 40px;
    }
    #header_logo img {
        width: 75px;
    }
    #about_sidebar{
        width:100%;
        overflow:auto;
    }
    #about_content{
        height: calc((var(--vh, 1vh) * 100) - 175px);
        top: 60px;
        left: 0;
        transform: none;
        overflow: auto;
    }
    #about_logo img{
        width: 80%;
    }
    #video_background {
        object-fit: contain;
    }
	#landing_section {
		top: 50%;
		height: 70vh;
		transform: translateY(-50%);
	}
}





