@charset "utf-8";

	.column {
		overflow: hidden;
	}
	.column > div {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 70%;
		-webkit-transition: .5s;
		transition: .5s;
	}
	.column > div:first-child {
		width: 30%;
	}
@media only screen and (max-width: 768px) {
	.column {
	}
	.column > div {
		float: none;
		width: auto;
		text-align: center;
	}
	.column > div:first-child {
		width: auto;
	}
}
