html,body{
	width: 100%;
	height: 100%;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
ul,ol{
	list-style: none;
}
img{
	max-width: 100%;
	display: block;
}
a{
	text-decoration: none;
}
input,button{
	outline: none;
	background: none;
	border: 0;
}
.max-widht{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.uw-flex{
	display: flex;
}
.uw-flex-center{
	justify-content: center;
	align-items: center;
}
.uw-flex-between{
	justify-content: space-between;
}
.uw-flex-around{
	justify-content: space-around;
}
.uw-flex-column{
	flex-direction: column;
}
.uw-flex-1{
	flex: 1;
}
