@import url('https://fonts.googleapis.com/css?family=Roboto|Pavanam');
body {
	background: #F5F5F5;
	font-family: 'Roboto', sans-serif;
	margin:0;
	padding:0;
}
.main-container {
	width: 100%;
	heigh: 100%;
}

.hamburger {
	position: fixed;
	top: 2%;
	right: 2%;
	height: 28px;
	width: 28px;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
}
.hamburger:hover {
	opacity: .7;
}
.hamburger.active .top {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: #FFF;
}
.hamburger.active .middle {
	opacity: 0;
	background: #FFF;
}
.hamburger.active .bottom {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: #FFF;
}
.hamburger span {
	background: #FF5252;
	border: none;
	height: 5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}
.hamburger span:nth-of-type(2) {
	top: 11px;
}
.hamburger span:nth-of-type(3) {
	top: 22px;
}
.overlay {
	position: fixed;
	background: #FF5252;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	z-index:99;
}
.overlay.open {
	opacity: .9;
	visibility: visible;
	height: 100%;
}
.overlay.open li {
	-webkit-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
}
.overlay nav {
	position: relative;
	height: 70%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 50px;
	font-weight: 400;
	text-align: center;
}
.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
}
.overlay ul li {
	display: block;
	height: 25%;
	height: calc(100% / 4);
	min-height: 50px;
	position: relative;
	opacity: 0;
}
.overlay ul li a {
	display: block;
	position: relative;
	color: #FFF;
	text-decoration: none;
	overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
	width: 100%;
}
.overlay ul li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 3px;
	background: #FFF;
	-webkit-transition: .35s;
	transition: .35s;
}
 @-webkit-keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}
 @keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}
.overlay ul li .active:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 3px;
	background: #FFF;
	-webkit-transition: .35s;
	transition: .35s;
}

/*Loading styles start*/
#loader {
	width: 100%;
	-webkit-animation: animatebottom 2s;
	animation: animatebottom 2s;
}
.animate-bottom {
	position: relative;
	-webkit-animation-name: animatebottom;
	-webkit-animation-duration: 1s;
	animation-name: animatebottom;
	animation-duration: 1s
}
 @-webkit-keyframes animatebottom {
 from {
bottom:-100px;
opacity:0
}
 to {
bottom:0px;
opacity:1
}
}
 @keyframes animatebottom {
 from {
bottom:-100px;
opacity:0
}
 to {
bottom:0;
opacity:1
}
}
#main-container {
	display: none;
	text-align: center;
}

.loading-logo {
	width: 270px;
	height: 150px;
	position: relative;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.loading-logo p {
	font-size: 22px;
	margin: 45px 10px 10px;
	color: white;
	text-align: center;
	position: absolute;
}
/*Loading styles end*/

/*Loading-bar styles start*/
.loader-bar {
  height: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #ddd;
}
.loader-bar:before{
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #ff4a4a;
  animation: loading 2s linear infinite;
}

@keyframes loading {
    from {left: -200px; width: 30%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% { left: 50%;}
    95% {left: 120%;}
    to {left: 100%;}
}
/*Loading-bar styles end*/

.intro{
	margin-top:100px;
	}
	
.intro h1{
	font-size:2em;
	font-family: 'Pavanam', sans-serif;
	}
.intro h2{
	font-size:1.2em;
	font-family: 'Pavanam', sans-serif;
	}	
.intro .summary{
	line-height:2;
	}		
.intro .photo{
	width:100px;
	border-radius: 50%;
	}			