.footer {
	color: white;
	background: black;
	padding: var(--spacing-3) var(--spacing-4);
}

.footer-flex {
	display: flex;
	justify-content: space-between;
	width: 75%;
}

.footer-flex > div {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-2)
}

.footer-about-us {
	width: 25%;
}

.footer-image {
	display: flex;
	justify-content: flex-end;
	grid-column: 1/4;
	padding-block: var(--spacing-2);
	border-bottom: 1px solid white;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	grid-column: 1/4;
	padding-top: var(--spacing-2);
	align-items: center;
}

.footer-socials {
	display: flex;
	gap: var(--spacing-1);
	align-items: center;
}

.footer-socials img {
	width: var(--title);
}

.byte-studio-signature {
	display: flex;
	justify-content: right;
	margin-top: var(--spacing-1);
}

@media only screen and (max-width: 767px) {
	.footer-about-us {
		width: unset;
	}

	.footer-flex {
		width: 100%;
		flex-direction: column;
		text-align: center;
		gap: var(--spacing-3);
	}

	.footer-flex > div {
		gap: var(--spacing-2);
		align-items: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-image {
		justify-content: center;
	}

	.footer-socials {
		justify-content: space-evenly;
	}

	.byte-studio-signature {
		justify-content: center;
    	margin-top: var(--spacing-2);
	}
}