footer {
	width: 100%;
	background-color: var(--primary-color);
	z-index: 1000;
}

.footer {
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	justify-content: space-between;
}

.footer-menus-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	width: 241px;
}

.copyright {
	background-color: var(--primary-color);
	color: #b8b8b8;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.footer-nav {
	height: 84px;
}

.footer-nav p,
.footer-text {
	color: #fff;
}

.footer-text {
	font-size: 20px;
	font-weight: 600;
}

.footer-nav li {
	list-style: none;
	text-align: center;
}

.footer-nav ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer-nav li a {
	color: var(--font-color);
}

.footer-nav li a:hover {
	color: var(--accent-color);
}

.footer-layout {
	max-width: 410px;
	margin-top: 32px;
}

.footer-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	font-size: 16px;
	color: var(--font-color);
}

.footer-info p i {
	font-size: 30px;
}

.socials i {
	margin-right: 15px;
}

/* Mobile styles */
@media (max-width: 1080px) {
	.footer {
		flex-direction: column;
		align-items: center;
		margin: 16px auto;
	}
	.footer-nav {
		height: auto;
	}
	.footer-nav ul li {
		text-align: center;
	}
	.footer-header {
		text-align: center;
	}
	.footer-info {
		margin-top: 32px;
		text-align: center;
	}
}
