/* GRID */
.grid {
	display: flex;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	z-index: 2;
}
.grid img {
	max-width: 100%;
}

.grid .col,
.grid .row {
	position: relative;
}
.grid .col.drop-hover,
.grid .row.drop-hover {
	background: #ffe7e7;
}
.grid .col.has-children {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
.grid .row.has-children {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}