.footer{
	color: white;
	width: 100vw;
	background-color: #0c2136;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

.footer .brand-description{
	width: 30vw;
}

.footer .brand-description .brand-name{
	margin-bottom: 20px;
	cursor: pointer;
}

.footer .brand-description .description{
	font-size: 16px;
	text-align: justify;
}

.footer .quickstart{
	width: 30vw;
	display: flex;
	justify-content: space-between;
}

.footer .quickstart .case{
	width: 20vw;
}

.footer .quickstart .case .line p{
	padding: 4px;
}

.footer .quickstart .case .line a{
	color: white;
}

.footer .quickstart .case .line a:hover{
	text-decoration: underline;
}

@media (max-width:768px)
{
	.footer{
		padding: 50px 20px 50px 20px;;
		flex-direction: column;
		align-items: normal;
		justify-content: normal;
	}
	
	
	.footer .brand-description{
		width: 90vw;
	}
	
	.footer .quickstart{
		margin-top: 50px;
		width: 90vw;
		display: flex;
		flex-direction: column;
		justify-content: normal;
		font-size: 14px;		
	}
	
	.footer .quickstart .case{
		width: 90vw;
	}
	
	.footer .quickstart .case .line a{
		text-decoration: underline;
	}
	
}