footer {
	padding: 3rem 10% 1rem 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--text-light);
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.footer-container h5 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.footer-container ul {
	margin: 0;
	font-size: 1rem;
}

.footer-container ul li a, .footer-container ul li {
	color: var(--text-gray-4);
}

.fc-logo img {
	width: 240px;
	object-fit: cover;
	margin: 0;
}

.fc-l-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 1rem;
}

.fc-l-container i {
	color: var(--main-color);
	font-size: 1.4rem;
	transition: all 0.3s ease;
}

.fc-l-container i:hover {
	color: var(--main-color-hover);
}

.fc-information-container {
	display: flex;
	gap: 40px;
}

.copyright {
	font-size: 1rem;
	margin-top: 2rem;
	color: var(--text-gray-2);
}

.fc-contact ul, .fc-menu ul, .fc-ubication ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fc-contact ul li i, .fc-ubication ul li i  {
	color: var(--main-color);
	font-size: 20px;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.fc-contact ul li i:hover, .fc-ubication ul li i:hover  {
	color: var(--main-color-hover);
}

@media screen and (max-width: 600px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.fc-information-container {
		flex-direction: column;
	}

	.fc-logo img {
		width: 200px;
	}

}