.group-title {
	display: flex;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	color: #007abd;
	text-align: center;
}
.group-title::before,
.group-title::after {
  content: "";
  height: 2px;
  border-top: 2px solid #0077c0;
  flex-grow: 1;
}
.group-title::before{
  margin-right: 30px;
}
.group-title::after{
  margin-left: 30px;
}
.group-link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.group-link::after {
  content:"";
  display: block;
  width: calc(100% / 3 - 8px);
}
.group-link li {
	width: calc(100% / 3 - 8px);
	margin-bottom: 10px;
}
.group-link li a {
    position: relative;
    display: block;
    width: 100%;
	margin: 0 auto;
	padding: 14px 0 12px;
	background-color: #0077c0;
	background-repeat: no-repeat;
	border: 1px solid #0077c0;
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	/* background-image: url(/volunteer/assets/images/anchor_btn-arrow.png);
	background-position: right 10px center; */
}
.group-link li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 45%;
	right: 10px;
	transform: translateY(-45%) rotate(135deg);
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: all .3s;	
}
.group-link li a:hover {
	background-color: #FFFFFF;
	color: #0077c0;
}
.group-link li a:hover:after {
	  border-color: #0077c0;
}
.groupBox {
	border: 1px solid #0077c0;
	border-radius: 15px;
	padding: 18px 15px 0;
	position: relative;
	margin-bottom: 10px;
}
.groupBox h4 {
	margin: 0 0 5px !important;
}
.groupBox .groupInfo {
	position: absolute;
	top: 15px;
	right: 15px;
}

.groupBox .groupInfo a{
	display: inline-block;
	margin: 0 8px;
}
.groupBox .groupInfo a img{
	width: 26px;
}
.groupBox .groupInfo a:hover{
	opacity: 0.7;
}