body, html{
	background: #110040;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Raleway', sans-serif;
}

.awwwwards{
	position: fixed;
	left: 0;
	opacity: .5;
	transition: all .5s ease;
	cursor: pointer;
}

.awwwwards:hover{
	opacity: 1;
}

.centered{
	display: flex;
	justify-content: center;
	align-items: center;
}

ul, li{
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu{
	position: absolute;
	right: 16px;
	width: 140px;
	overflow: hidden;
	height: 760px;
	z-index: 2;
	top: 5vh;
}

.menu li{
	margin-top: 40px;
	text-align: center;
	opacity: 0.5;
	transition: all 0.25s ease;
	cursor: pointer;
	display: block;
	margin-right: -240px;
}

.menu li img{
	max-height: 60px;
}


@supports (-ms-ime-align:auto) {

	.menu li{
		margin-right: -260px;		
	}
	  .menu li a img{
		max-height: 80px;
		width: 100%;
		height: 100%;
	}
}


.menuAnimation li{
	animation: 1s menuSlide 1 forwards;
}

.menu li a{
	font-family: 'Aldrich', sans-serif;
	color: #00B4FF;
	font-size: 18px;
	text-decoration: none;
	display: flex;
	margin-top: 16px;
	flex-direction: column;
	justify-content: center;
}

.menu li a span{
	margin-top: 20px;
}

.menu li:hover{
	opacity: 1;
	padding-right: 16px;
}

.menu li:nth-child(2){
	animation-delay: 0.25s;
}

.menu li:nth-child(3){
	animation-delay: 0.5s;
}

.menu li:nth-child(4){
	animation-delay: 0.75s;
}

.menu li:nth-child(5){
	animation-delay: 1.25s;
}

@keyframes menuSlide{
	from{
		margin-right: -240px;
	}

	to{
		margin-right: 0;
	}
}

.menu li.menu-active{
	opacity: 1;
	padding-right: 32px;
}


/*.minusRight li, .minusRight li.menu-active{
	margin-right: -240px;
}
*/
h1{
	font-family: 'Aldrich', sans-serif;
	font-size: 16px;
	color: #0BD2FF;
	margin-top: 30px;
	font-weight: normal;
}

h2{
	font-weight: normal;
	line-height: 1.5;
}

.main-h2-case{
	max-width: 360px;
}

/* INTRO */

.intro{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.greetingH1{
	display: flex;
	flex-direction: row;
}

.greetingH1 h1{
	height: 16px;
}

.greeting{
	text-transform: uppercase;
}

.typed-cursor{
	opacity: 1;
	-webkit-animation: rotate 1s infinite;
	-moz-animation: rotate 1s infinite;
	animation: rotate 1s infinite;
	color: rgba(0,0,0,0);
	margin-top: 26px;
	width: 2px;
	height: 20px;
	margin-left: 16px;
	background: #0BD2FF;
	transform:  rotate(30deg);
/*			display: none;
*/		}

.main-txt .typed-cursor{
	display: none;
}

.fadeIn{
	animation: fadeIn 1s ease 1 forwards;
}

.fadeOut{
	animation: fadeOut 1s ease 1 forwards;

}

/* ROATATE IN ANIMATIOn */
@keyframes rotate{
	0% { transform:  rotate(30deg) }
	100% { transform:  rotate(360deg) }
}
@-webkit-keyframes rotate{
	0% { transform:  rotate(30deg) }
	100% { transform:  rotate(360deg) }
}
@-moz-keyframes rotate{
	0% { transform:  rotate(30deg) }
	100% { transform:  rotate(360deg) }
}

/* FADE IN ANIMATIOn */
@keyframes fadeIn{
	0% { opacity: 0 }
	100% { opacity: 1 }
}
@-webkit-keyframes fadeIn{
	0% { opacity: 0 }
	100% { opacity: 1 }
}


/* FADE OUT ANIMATIOn */
@keyframes fadeOut{
	0% { opacity: 1 }
	100% { opacity: 0 }
}
@-webkit-keyframes fadeOut{
	0% { opacity: 1 }
	100% { opacity: 0 }
}

/* MAIN PAGE*/

.ar{
	position: absolute;
	top: 16px;
	left: 16px;
	font-family: 'Raleway', sans-serif;
	z-index: 2;
}

.ar a{
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ar:hover span{
	opacity: 1;
}

.ar span{
	color: #fff;
	font-family: 'Aldrich', sans-serif;
	font-size: 18px;
	margin-left: 24px;
	margin-top: 6px;
	opacity: 0;
	transition: opacity .25s ease;
}
.char{
	max-height: 750px;
	height: 100%;
	transition: all 0.25s ease;
}

.main-cont{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	max-width: 1040px;
	width: 100%;
}

.main-txt{
	max-width: 560px;
	width: 100%;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 60px;
	margin-top: 40px;
	transition: all 1.25s ease;
	transition-delay: 3s;
}

.zero{
	width: 0;
	height: 0;
	margin-left: 0;
}


.main-txt span{
	color: #fff;
	font-size: 18px;
	font-family: 'Aldrich', sans-serif;
}

.main-txt h2{
	color: #04BCFF;
	font-size: 42px;
	font-family: 'Aldrich', sans-serif;
	margin-top: 8px;
}

.conf{
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	color: #0E84B5;
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	opacity: 0;
}

.mobile, .none{
	display: none; 
}

/* mobile menu */
.overlay{
	width: 100%;
	height: 100%;
	background: #110040;
	position: fixed;
	z-index: 3;
	opacity: 1;
	transition: all .5s ease;
	top: 0;
	left: 0;
}

.closed{
	transform: translateY(-100%);
	opacity: 0;
}

.mob-menu{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.mob-menu li{
	width: 50%;
	margin-top: 8vh;
	opacity: 0.5;
	transition: all .5s ease;
	transform: translateX(0);
	display: flex;
    justify-content: center;
    align-items: flex-end;
}

.mob-menu li a{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-decoration: none;
}


.mobile .menu-active, .mob-menu li:hover{
	opacity: 1;
}

.mob-menu li span{
	color: #00B4FF;
	text-decoration: none;
	font-family: 'Aldrich', sans-serif;
	margin-top: 24px;
	font-size: 18px;
}

.menu-icon{
	position: absolute;
	bottom: 24px;
	right: 0;
	z-index: 4;
	overflow: hidden;
	height: 60px;
	width: 96px;
	transition: all 0.5s;
}


#mobileMenu{
	transition: right 0.5s ease;
	position: absolute;
	right: 0;
	height: 60px;
	width: 96px;
}
.mobileMenuOut #mobileMenu{
	right: -140px;
	position: absolute;
}

/* Mobile menu transition */
.closed .mob-menu li:nth-child(1), .closed .mob-menu li:nth-child(3), .closed .mob-menu li:nth-child(5){
	transform: translateX(-140%);
}

.closed .mob-menu li:nth-child(2),.closed .mob-menu li:nth-child(4){
	transform: translateX(100%);
}

.mob-menu li:nth-child(2){
	transition-delay: .25s;
}

.mob-menu li:nth-child(3){
	transition-delay: .25s;
}

.mob-menu li:nth-child(4){
	transition-delay: .5s;
}

.mob-menu li:nth-child(5){
	transition-delay: .75s;
}

#skip{
	color: #0E84B5;
	font-family: 'Aldrich', sans-serif;
	position: fixed;
	bottom: 16px;
	opacity: 0.5;
	transition: all 0.2s ease;
	cursor: pointer;
}

#skip:hover{
	color: #04BCFF;
	opacity: 1;
}