#how-our-classes-work {
	width: 100%;
	background-color: #cdc8c2;
	margin: 80px 0px;
	padding: 60px 46.5px 80px 46.5px;
}
#how-our-classes-work > h2 {
	text-align: center;
	text-transform: uppercase;
	font-size: 24px;
}
#hows {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
}
.how {
	width: 100%;
	max-width: 310px;
	min-height: 222px;
	margin: 15px;
	padding: 0px 20px;
}
.how:not(:first-child):not(:last-child) {
	border-left: 1px solid #9f988e;
	border-right: 1px solid #9f988e;
}
.how > img {
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin: 0 auto 10px auto;
}
.how > div {
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	margin: 10px 0px;
}
.how > p {
	text-align: center;
	font-size: 15px;
	line-height: 36px;
	margin: 10px 0px;
}
@media (max-width: 1200px) {
	#hows {
		justify-content: center;
	}
	.how:not(:first-child):not(:last-child) {
		border-left: none;
		border-right: none;
	}
}

a.site {
	display: block;
	text-decoration: none;
	margin: 80px 0px;
	color: black;
}
a.site > div {
	color: black;
	font-size: 30px;
	margin-bottom: 20px;
	font-weight: 600;
}
a.site > img {
	display: block;
	margin: 20px 0px;
	object-fit: contain;
}
a.site > p {
	display: block;
	margin: 20px 0px;
	color: black;
}
a.site > button {
	display: block;
	margin: 20px 0px;
	background-color: white;
	color: #d61516;
	border: 2px solid #d61516;
}
a.site > button:hover {
	background-color: #d61516;
	color: white;
}