.service-card {
	border: solid 2px #eeeeee;
	border-radius: 4px;
	margin: 0 0 2rem 0;
}

.service-card summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 1.25rem 1.5rem;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 1.75rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	color: #212931;
	list-style: none;
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.service-card summary::-webkit-details-marker {
	display: none;
}

.service-card summary::after {
	content: '\f078';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1rem;
	color: #212931;
	-moz-transition: transform 0.3s ease;
	-webkit-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	margin-left: 1rem;
	flex-shrink: 0;
}

.service-card[open] summary::after {
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.service-card summary:hover {
	color: #18bfef;
}

.service-card summary:hover::after {
	color: #18bfef;
}

.service-card .service-content {
	padding: 0 1.5rem 1.5rem 1.5rem;
}

@media screen and (max-width: 736px) {
	.service-card summary {
		font-size: 1.25rem;
	}

	.actions.special li {
		padding-left: 0;
		width: 100%;
	}

	.actions.special .button {
		width: 100%;
		box-sizing: border-box;
		white-space: normal;
		text-align: center;
		height: auto;
		line-height: 1.4;
		padding: 0.75rem 1rem;
	}
}
