  @charset "utf-8";
/* CSS Document */

.srg-h2 {
	text-align: center;
/* 	background-color: #a80532; */
/* 	color: #fff !important; */
	padding: 10px;
	display: block;
	margin: 20px auto !important;
	width: 80%;
	border-bottom: #a80532 solid 3px;
}

.srg-content div h2 {
	font-size: 1.35em !important;
}

.srg-content div {
	padding: 15px;
}

.srg-disclaimer {
	background-color: #f0f0f0;
	padding: 0.95em;
	border-radius: 5px;
	width: 80%;
	margin: 20px auto;
}

.srg-disclaimer > p {
	font-size: 14px;
}

.srg-callout {
	color: #a80532;
	font-weight: bold;
}

.srg-cards {
	text-align: center;
}

.srg-cards li {
	width: 200px;
	text-align: center;
	padding: 20px;
	margin-bottom: 20px;
	margin-right: 20px;
	position: relative;
	background-color: #f5f5f5;
}

.srg-cards li:before {
	display: none;
}

.srg-cards li > a:hover {
	color: #fff;
}

.srg-cards li > a {
	display: block;
	width: 100%;
	height: 100%;
	color: #a80532;
	font-size: 1.15em;
	font-weight: bold;
	background-color: #f5f5f5;
}

.srg-cards li > a::before {
	content:'';
    background: #a80532;
    position:absolute;
    left:0;
    top:0;
    height:0%;
    width:100%;
    /*-webkit-transition: width .3s ease-out;*/
    -webkit-transition: height .3s ease-out;
}

.srg-cards li > a:hover::before {
	/*width:100%;*/
	height: 100%;
}

.srg-cards li span {
	min-height: 50px;
	height: 100%;
	display: inline-table;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	position: relative;
}