@charset "utf-8";
@font-face{
		font-family: 'VINERITC1';
		src: url("../Font/viner-hand-itc/VINERITC.TTF");
	}
html, body{
    margin: 0;
    overflow: hidden;
    background-color: black;
}
#full-vid-tn{  
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;    
    justify-content: center;
    align-items: flex-start;
}
#full-vid-cn video{
    position: absolute;
    z-index: -1;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#full-vid-cn{    
    color: white;  
}
#wrapper{  
    position: absolute;
    width: 100%;    
    height: 100%;    
    z-index: 1;
}
#menu{    	
    z-index: 2;
}
#btn{            
	display: inline-block;
    cursor: pointer;    
}
#btn div{
    width: 35px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
}
#cbtn{    
	display: inline-block;
    cursor: pointer;
    float: right;
    margin-right: 30px;
    font-size: 60px;    
}
#content{   
    position: absolute;
	color: white;
	background:url("../Gallery/blur.png");     
    margin-top: 0px;
    left: 0px;   
    z-index: 1;
	border-top: solid;
	border-bottom: solid;
	width: 100%;
	display: none; 
}
#content li{        
	list-style: none;
	float: left;
	margin-right: 30px;
	margin-bottom: 10px;
	
}
 i{
	
	vertical-align:bottom;	 
}
#content a{
	color: white;
	text-decoration: none;
    line-height: 35px;
}
#title{
    font-family: 'VINERITC1';
    text-align: center;
	margin:10% auto;
}
.h1{
    opacity: 0;		
	font-size: 70px;
    animation: fade-in 2s ease-in forwards;
	-webkit-animation: fade-in 2s ease-in forwards;
    animation-delay: 3s;
    -webkit-animation-delay: 3s;
}
.h4{
    opacity: 0;
    font-size: 25px;
    animation: fade-in 2s ease-in forwards;
	-webkit-animation: fade-in 2s ease-in forwards;
     animation-delay: 4s;
    -webkit-animation-delay: 4s;
}
hr {  
    animation: fade-right 3s ease-in forwards;
    -webkit-animation: fade-right 3s ease-in forwards;
    border:none;
    background:linear-gradient(to left, white, transparent);
    color:white;
    overflow: visible;
    text-align: right;
    height: 2px;	
	font-size: 20px;
	margin-top: 0;
	min-width: 20px;
    max-width: 600px;
    width: 50%;
    position: relative;   
}
hr:after {    
    content: "";
    padding:0px;    
    position: absolute;
    left: 5px;    
    width: 100%;
    top: -10px;
}
#footer{  
    position: absolute;
    bottom: 0;
    text-align: right;
    right: 0;
    padding: 10px;
}
#footer font{
    color: rgba(255,255,255,0.30);
}
@media (max-width: 625px) {       
    #title{
		margin: 50% 2%;
    }
    .h1{
        font-size: 55px;
    }
    .h4{
        font-size: 15px;
    }
    #footer{
        padding-bottom: 60px;
    }
    hr{
        width: auto;
    }
}
@media (max-height: 425px){
    #title{
		margin: 5% auto;
        width: 90%;
	}     
	.h1{
		font-size: 60pt;
	}
    .h2{
        font-size: 15pt;
    }
    hr{
        width: auto;
    }
    #footer{
        padding-bottom: 60px;
    }
}
@keyframes animate{
    to{
        transform: skewX(0deg) scaleY(100%);
    }
}
@-webkit-keyframes animate{
    to{
        transform: skewX(0deg) scaleY(1);
    }
}
@keyframes fade-in {
    from {
        opacity:0;
        filter: blur(20px);        
    }
    to {
        opacity:1;
        filter: blur(0px);
    }
}
@-webkit-keyframes fade-in {
    from {
        opacity:0;
        filter: blur(20px);
    }
    to {
        opacity:1;
        filter: blur(0px);
    }
}
@keyframes fade-right {
    0%{
        opacity: 0;
        width: 0;
        transform: translateX(-1000px);          
    }
    100%{
        opacity: 1;
        width: 100%;
        transform: translateX(0);
    }
}
@-webkit-keyframes fade-right {
    0%{
        opacity: 0;
        width: 0;
        transform: translateX(-1000px);          
    }
    100%{
        opacity: 1;
        width: 100%;
        transform: translateX(0);
    }
}
