/* --- Container --- */
.footer-container {
	display: flex;
	margin-top: auto;
	background-color: var(--bg-secondary);
	padding: 1rem 0;
}
.footer {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: 90%;
}

/* --- Header --- */
.footer-header {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1rem 0;
}
.footer-logo {
	display: flex;
	place-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 0.6rem;
}
.footer-logo img {
	width: 2.6rem;
	aspect-ratio: 1/1;
}
.footer-logo span {
	font-size: 1.8rem;
	letter-spacing: 2px;
	font-weight: 900;
	color: white;
}

/* --- Contacts --- */
.footer-contacts {
	display: flex;
	justify-content: center;
	flex-direction: row;
	place-items: center;
	gap: 1rem;
	color: white;
}

/* --- Info --- */
.footer-info {
	padding: 1rem 0;
	border-top: 1px solid var(--line);
}
.footer-info p {
	color: white;
	font-size: 0.8rem;
	padding: 0;
}

/* --- Links --- */
.footer-links {
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	color: white;
	font-size: 0.8rem;
}
.footer-links div {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1rem 0;
}

/* --- Link Hover --- */
.footer a {
	transition: ease 0.2s all;
}
.footer a:hover {
	opacity: 0.7;
}

/* --- Responsive --- */
@media (min-width: 568px) {
	.footer-links div {
		justify-content: space-evenly;
	}
}
@media (min-width: 768px) {
	.footer-header {
		flex-direction: row;
		justify-content: space-between;
	}
}
@media (min-width: 992px) {
	.footer-links {
		flex-direction: row;
		justify-content: space-between;
	}
	.footer-links div {
		justify-content: unset;
		gap: 2rem;
	}
}
@media (min-width: 1600px) {
	.footer {
		width: 80%;
	}
}
