html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
body {
	background: #230A3A;
}
/* Main Content */
#eut-main-content {
	display: table;
	width: 100%;
	height: 100vh;
	text-align: center;
	font-family: 'Hind Siliguri', sans-serif;
}

#eut-main-content .eut-wrapper {
	display: table-cell;
	vertical-align: middle;
}

#eut-main-content .eut-logo img {
	max-width: 163px;
	width: auto;
	height: auto;
	display: block;
	margin: 0 auto 20px auto;
}

#eut-main-content h1 {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	color: #ffffff;
	opacity: 0.4;
	margin-bottom: 20px;
}

#eut-main-menu {
	margin-top: 40px;
}

#eut-main-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#eut-main-menu ul li {
	display: inline-block;
	vertical-align: middle;
}

#eut-main-menu ul li a {
	display: block;
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 10px;
	color: #ffffff;
	-webkit-transition : all .3s;
	-moz-transition    : all .3s;
	-ms-transition     : all .3s;
	-o-transition      : all .3s;
	transition         : all .3s;
}

#eut-main-menu ul li a:hover {
	color: #FF344D;
	-webkit-transform: translateY(-2px);
	-moz-transform:    translateY(-2px);
	-ms-transform:     translateY(-2px);
	-o-transform:      translateY(-2px);
	transform:         translateY(-2px);
}

@media only screen and (max-width: 767px) {
	#eut-main-menu ul li {
		display: block;
		margin-bottom: 20px;
	}
}