@charset "UTF-8";
/* CSS Document */

#maximage {
}
			
			
#logo {
	position: absolute;
	top: 45%;
	left: 58%;
	transform: translate(-50%, -50%);
	z-index:1000;
	height:auto;	
}
		
		
			
#logo img {
	max-width: 100%;
    height: auto;
}



		
a{
	display: inline-block;
	position: relative;
	color: #fff;
 	text-decoration: none;
}


a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 40%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: 0.4s;
}
            
			
			
a:hover:before {
	transform: scale(1);
}
			