.shortcut{
	color: #12365E;
	width: 100vw;
	background-color: #f7f7f7;
	padding: 80px 50px 80px 50px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	
}

.shortcut .case{
	width: 24vw;
	padding: 40px;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.shortcut .case:hover{
	border-bottom: 3px #ec4e4f solid;
}

.shortcut .case .icon img{
	width: 82px;
	height: 82px;
}

.shortcut .case .text{
	margin: 25px 0 0 0;
}

.shortcut .case .text .title{
	margin: 0 0 15px 0;
	text-align: center;
	font-size: 18px;
}

.shortcut .case .text .description{
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 16px;
}

.shortcut .case .text .link{
	text-align: center;
	font-size: 14px;
}

.shortcut .case .text .link a{
	color: #12365E;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shortcut .case .text .link a span{
	margin-right: 5px;
}

.shortcut .case .text .link a img{
	width: 20px;
}

@media (max-width:768px)
{
	.shortcut{
		padding: 25px 0 25px 0;
		flex-direction: column;
		justify-content: center;
	}
	
	.shortcut .case{
		width: 90vw;
		padding: 30px;
		margin: 20px;
	}
	
	.shortcut .case:hover{
		border-bottom: 0;
	}
}