/* activity
* --------------------------------------- */
#activity {
	padding: 15px 8% 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
@media screen and (max-width: 768px) {
	#activity {
		display: block;
	}
}

#activity .unit {
	clear: both;
	width: 48%;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	#activity .unit {
		width: 100%;
	}
}

#activity .unit h1 {
	position: relative;
	padding: 10px;
	background-color: #f0f0f0;
	color: #222;
	font-size: 1.4em;
	text-shadow: 0.07em 0.07em 0 rgba(207, 207, 207, 0.8);
}
#activity .unit h1::before,
#activity .unit h1::after {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
}
#activity .unit h1::before {
	left: 0;
	border-width: 0 15px 15px 0;
	border-right-color: #ccc;
}
#activity .unit h1::after {
	right: 0;
	border-style: solid;
	border-width: 15px 15px 0 0;
	border-top-color: #ccc;
}
#activity .unit p:nth-of-type(2) {
	padding: 10px 15px;
	text-align: left;
}

@media screen and (max-width: 480px) {
	#activity  {
		padding: 0 5%;
	}
	#activity .unit h1 {
		font-size: 1.2em;
		line-height: 1.4;
	}
	#activity img {
		width: 80%;
	}
}

.btns {
	margin-bottom: 3em;
}
.btns a {
	padding: 10px 15px;
	background: #3399FF;
	color: #fff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

