div {
    box-sizing: border-box;
}

.tab {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
}

.tab a.card {
	display: grid;
	font-family: inherit;
	padding: 0;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	color: rgba(0,0,0,1);
	margin: 16px;
	background-color: #fff;
}

.tab a.card.active {
	color: rgba(0,0,0,1) !important;
	text-decoration: underline;
}

.card-img {
	width:100%;
	height: 143px;
	object-fit: cover;
}

.card-img:hover {
	cursor: pointer;
}

.card-text-container {
	padding: 16px 16px;
	text-align: center;
	margin-top: -4px;
}

.card-heading {
	font-family: inherit;
    font-weight: bold;
    font-size: 18px;
}

.card-heading.active {
	text-decoration: underline;
}

.tabcontent {
	display: none;
	padding: 6px 12px;
	border: none;
}

.sub-heading {
	text-align: center;
	font-family: inherit;
	font-weight: bold;
	font-size: 24px;
	margin: 40px 0;
}

.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 10px;
	text-align: center;
	margin: 0 16px;
}

.grid a, .grid div {
	display: grid;
	align-content: center;
	justify-content: center;
	padding: 40px 20px;
	font-family: inherit;
	border-radius: 19px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}

.grid a:hover {
	color: #fff;
	text-decoration: underline;
}

.breadcrumb a:last-child{
	font-weight: normal;
	color: #c7c7c7;
}

.breadcrumb a {
	color: #0058af;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
	font-size: 16px;
}

@media all and (max-width: 767px) {	
	.tab, .grid {
		grid-template-columns: auto;
		grid-gap: 10px;
	}
}
