/* Flex */
.flex-container { display:flex; }
.row-wrap { flex-flow: row wrap; }
.flow-column { flex-flow: column; }
.row-reverse { flex-direction: row-reverse; }
.space-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-right { justify-content: right; }
.align-center { align-items: center; }
.order-1 { order:1; }
.order-2 { order:2; }
.block { display:block; }
img.block {
	display:block;
	width:100%;
}

.book-image {
	max-width:400px;
	margin-top:15px;
}

.way-flex {
	margin-top:60px;
	margin-bottom:60px;
}

@media(min-width:1025px) {
	
	.way-flex {
		column-gap:60px;
	}
	
	.book-image {
		flex:0 0 400px;
	}
}

@media(max-width:1024px) {
	.flex-clear-1024 { display:block; }
	.book-image {
		margin-left:auto;
		margin-right:auto;
		margin-bottom:60px;
	}
}