.content-wrap, .row{
	display:flex;
	flex-flow: row wrap;
}
.row{
	display: flex;
}

.wrap{
	flex-wrap:wrap;
}
.j-c-center{
	justify-content:center;
}
.j-c-space-between{
	justify-content:space-between;
}
.j-c-around{
	justify-content:space-around;
}
.align-items-c,.a-i-center{
	align-items:center;
}
.col{
	flex-direction:column;
}

