footer
{
	width: 100%;
	background-color: #2B2B2B;
	box-sizing: border-box;
	padding: 2rem 1.5rem;
}

.footer_top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	max-width: 90rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.footer_top_left
{
	max-width: 30rem;
}

.ftl_logo
{
	width: 20rem;
	height: auto;
	object-fit: contain;
}

.ftl_desc
{
	font-size: 1.3rem;
	color: #FFFFFF;
	line-height: 1.5;
}

.footer_top_right
{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.ftr_top
{
	display: flex;
	gap: 4rem;
}

.ftr_column
{
	display: flex;
	flex-direction: column;
}

.ftr_column_title
{
	font-size: 1.5rem;
	color: #FFFFFF;
	margin-bottom: 1rem;
}

.ftr_link_list
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.ftr_link_list li
{
	margin-bottom: 0.8rem;
}

.ftr_link_list a
{
	color: #CCCCCC;
	font-size: 1.2rem;
	text-decoration: none;
	transition: color 0.1s;
}

.ftr_link_list a:hover
{
	color: #3399FF;
}

.footer_bottom
{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.2rem;
	color: #959595;
}

.fb_hr
{
	width: 90%;
	margin-bottom: 1.5rem;
}

.fb_cr, .fb_disclaimer
{
	margin: 0.3rem 0;
	text-align: center;
}

@media (max-width: 900px)
{
	.footer_top
	{
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	.footer_top_right
	{
		align-items: center;
	}

	.ftr_top
	{
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
}
