.server_cards {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	width: 100%;
}
.server_cards .card_heading {
	background-color: #738DB7;
	flex-basis: 100%;
	margin: 0 1% 1% 1%;
	padding: 10px 12px;
	color: #fff;
	border-radius: 4px;
	text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}
.server_cards .card {
	display: flex;
	flex-direction: column;
	flex-basis: 23%;
	margin: 0 1% 1% 1%;
}
.server_cards .card img {
	width: 100%;
	height: 169px;
	border-radius: 3px 3px 0 0;
}
.server_cards .card h2 {
	font-weight: bold;
	color: #fff;
	background-color: #303030;
	border-top: 3px solid #738BD7;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3);
	padding: 10px;
}
.server_cards .card .servers {
	background-color: #303030;
	padding: 10px;
	display: flex;
	align-items: center;
}
.server_cards .card .servers .server_connect button {
    background-color: #232323;
    color: #a3a3a3;
    margin-right: 10px;
    border: unset;
    outline: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding: 7px 11px;
    border-radius: 3px;
    transition: ease 0.1s all;
    font-size: 0.75em;
}
.server_cards .card .servers .server_connect button i {
	margin-right: 10px;
}
.server_cards .card .servers .server_connect button:hover {
	background-color: #738BD7;
	color: #fff;
}