html,
body {
	margin: 0;
	padding: 0;
	font-family: Open Sans;
}

.header,
.main,
.footer {
	display: flex;
	justify-content: center;
}

a {
	color: #C6D22D;
	text-decoration: none;
}

h4,
h5 {
	font-size: 16px;
}

.site-wrapper {
	max-width: 1000px;
	width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
}

.header_branding {
	padding: 15px 0;
}

.dce_columns_with_symbol_container {
	display: flex;
	justify-content: space-between;
	background-color: #C6D22D;
	padding: 40px;
	gap: 20px;
}

.dce_columns_with_symbol_item_media {
	display: flex;
	justify-content: center;
}

.dce_columns_with_symbol_item_media img {
	border-radius: 50%;
}

.dce_columns_with_symbol_item {
	box-sizing: border-box;
	width: 50%;
}

.dce_columns_with_symbol_item_text h2 {
	text-align: center;
}

.main {
	padding: 20px 0;
}

.footer {
	background-color: #333;
	color: #fff;
}

table {
	
}

table td:first-child {
	width: 200px;
	font-weight: 600;
}

table td {
	padding: 5px;
}

@media only screen and (max-width: 650px) {

	.dce_columns_with_symbol_item {
		width: 100%;
	}
	
	.dce_columns_with_symbol_container {
		flex-wrap: wrap;
		gap: 20px;
	}
	
}