html{
	height: 100%;
}

body{

	margin: 0;
	padding: 0;
	height: 100%;

	overflow: hidden;

	font-family: sans-serif;
}

.nav{
	z-index: 3;

	position: absolute;
	left: 0px;
	top: 0px;

	background-color: #2c153c;
	color: #fff;
	

	width: 170px;
	height: 100%;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;

	-ms-align-items: center;
	align-items: center;

	justify-content: center;
}

.nav ul{
	width: 100%;
	margin: 0;
	padding: 0;
}

.nav ul li{
	width: 100%;

	list-style-type: none;
	font-family: sans-serif;
	font-size: 14px;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;

	-ms-align-items: center;
	align-items: center;

	padding: 15px 0;

	margin: 15px 0;

}

.nav ul li img{
	width: 50px;
	height: 50px;
}

.nav ul li:hover{
	background-color: #211029;
}

.logo{
	margin: 0;
	padding: 0;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: center;

	position: absolute;
	left: 0;
	top: 0;

	width: 100%;
	height: 35px;
}

a{
	text-decoration: none;
	color: #fff;
}

.flex-slider{
	position: relative;
	z-index: 2;
	height: 100%;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: flex-end;

	-ms-align-items: center;
	align-items: center;
}

.slider{
	margin-right: 20px;

	width: 10px;
}

.button{
	margin: 15px 0;

	height: 10px;
	width: 10px;


	background-color: #fff;
}

.button:hover{
	background-color: yellow;
}

.center{
	margin-left: 170px;
	width: 100%;
	height: 100%;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.buttonCenter{

	margin: 0 50px;

	width: 200px;
	height: 60px;
	
	color: #000;

	border: 2px solid #e4e4e4;

	border-radius: 50px;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: center;
	-ms-align-items: center;
	align-items: center;


	font-size: 18px;

	transition: 1s ease;

	background-color: #fff;
}

.buttonCenter:hover{
	transition: 1s;

	background-color: #f4c400;

	color: #000;

	border: 2px solid #f4c400;
}

.sliderImages{
	width: 100%;
	height: 100%;

	position: absolute;	
	top: 0;
	left: 0;

	z-index: 1;
}

.image{
	width: 100%;
}

.text4, .text2{
	margin-top: 7px;
}