#course {
	padding-top: 50px;
	padding-bottom: 50px;
}

#course .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 50px;
	border-bottom: #aaa 1px solid;
}

#course .content_title {
	background: #1867c5;
}

#course .content_title h2 {
	color: #fff;
	background: #2b88f7;
}

#list_course {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content:space-between;
}

#list_course > li {
	width: calc( 25% - 20px );
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-radius: 10px;
	background: #d1d1d1;
	overflow: hidden;
}

#list_course > li h3 {
	padding: 15px 0;
	text-align: center;
	font-size: 25px;
	font-weight: 400;
	color: #fff;
}

#list_course > li > ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 25px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: #f0f0f0;
}

#list_course > li > ul > li {
	position: relative;
	width: 150px;
	line-height: 35px;
	padding-left: 40px;
	font-size: 20px;
}

#list_course > li > ul > li.hot:after {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 36px;
	height: 20px;
	background: url('../images/hot.svg') left center no-repeat;
	background: 20px auto;
	animation-name: jump;
	animation-iteration-count: infinite;
	animation-duration: 1.5S;
	animation-timing-function: ease-in;
	cursor: pointer;
	transition: .3s;
} 

@keyframes jump {
	0% { top: 8px; }

	30% { top: 12px; }

	40% { top: 3px; }

	50% { top: 10px; }

	60% { top: 8px; }

	100% { top: 8px; }

}

.am h3, .fr h3 {
	background: #4398d1;
	border-bottom: #2188c1 10px solid;
}

.jp h3, .ex h3 {
	background: #fc5959;
	border-bottom: #ea3939 10px solid;
}

.sp h3, .wk h3 {
	background: #e5b52e;
	border-bottom: #ce9c20 10px solid;
}

.kr h3, .sd h3 {
	background: #64546d;
	border-bottom: #483754 10px solid;
}



@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 979px) {
	#list_course > li {
		width: calc( 50% - 5px );
	}
}

@media screen and (max-width: 767px) {

	#list_course > li {
		margin-bottom: 15px;
	}

	#list_course > li h3 {
		font-size: 20px;
	}


	#list_course > li > ul {
		padding: 15px;
	}

	#list_course > li > ul > li {
		width: 130px;
		line-height: 30px;
		font-size: 16px;
	}

}

@media screen and (max-width: 320px) {

	#list_course > li {
		width: 100%;
	}

}

@media screen and (max-device-width: 480px) {
	
}







