.container {
	display: flex;
	flex-direction: column;
}

.title {
	font-size: 1em;
}

.content {
	margin: 6em 4em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.picture img {
	height: 35vh;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	-moz-box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.subtitle {
	text-transform: uppercase;
}

.elements {
	display: grid;
  	grid-template-columns: 1fr;
  	grid-auto-rows: 1fr;
}

.element {
	display: flex;
	align-items: center;
	background-color: #fff;
	cursor: pointer;
	margin: .75em 0;
	padding: 1em 2em;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	transition: all .3s ease;
}

.element:hover {
	position: relative;
	transform: translateY(-.125em);
	box-shadow: none;
}

.icon {

}

@media (max-width: 468px) {
	.title {
		font-size: .75em;
	}

	.content {
		flex-direction: column;
		margin: 3em 2em;
		gap: 1em;
	}

	.picture img {
		height: 35vh;
	}
}