.footer {
	position: relative;
	background-color: var(--bexco-zwei);
	color: var(--bexco-lite);
	padding: 15vh 0 0; }

	.footer .container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px; }	

	.footer .column.right {
		text-align: right; }

.footer .sup {
    color: var(--bexco-dark);
    text-transform: uppercase;
    font-family: var(--bexco-bold);
    font-size: 3em;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.8;
    margin-bottom: 20px; }

.footer .logo {
	margin-bottom: 30px; }

.footer .li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px; }

	.footer .column.right .li {
		justify-content: flex-end; }
	.footer .column.right .li p {
		margin: 10px 0; }

.footer .copyright {
	width: 100%;
	background-color: var(--bexco-dark);
	color: var(--bexco-zwei);
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	padding: 10px 0;
	margin-top: 10vh; }

.footer .socials {
	display: flex;
	justify-content: flex-end;
	gap: 1vw;
	font-size: 1.5vw;
	margin: 30px 0 0; }


@media (max-width: 900px) {
	.footer .container {
	    grid-template-columns: 1fr;
	    padding: 0 30px; }

	.footer .column.right {
	    text-align: left; }

	.footer .column.right .li {
	    justify-content: start; }
	.footer .socials {
	    justify-content: center;
	    font-size: 30px;
	    gap: 30px; }
}