footer {
	padding: 74px 0 40px;
}

footer .c {
	display: grid;
	grid-template-columns: 1fr 400px;
}

footer .left {
	font-size: 22px;
	font-family: var(--font2)
}

footer .left .item {
	display: inline-block;
	vertical-align: middle;
	margin-right: 24px;
}

footer .left .item a {
	display: inline-block;
	vertical-align: middle;
	margin-left: 26px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

footer .left .item a:hover {
	color: var(--color2);
}

footer .left .item img {
	margin-right: 14px;
	height: 16px;
	width: 18px;
	object-fit: contain;
}

footer .right {
	text-align: right;
}

footer .right .social {
	display: inline-block;
	vertical-align: middle;
	margin-left: 33px;
	-webkit-transition: all 0.5s;
}

footer .right .social a {
	margin-left: 12px;
	display: inline-block;
	vertical-align: middle;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 1;
}

footer .right .social a:hover {
	margin-left: 12px;
	display: inline-block;
	vertical-align: middle;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0.5;
}

footer .right .social img {
	height: 16px;
	object-fit: contain
}

footer .right>a {
	font-size: 14px;
	border-bottom: 1px solid currentColor;
	margin-left: 34px;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 1;
}

footer .right>a:hover {
	opacity: 0.5;
}

/* [l] */
@media all and (max-width: 1200px) {

	footer .left {

		font-size: 16px;
	}

	footer .left .item {

		margin-right: 0;
	}



	footer .left .item img {

		position: relative;
		top: 2px;
	}


}

/* [m] */
@media all and (max-width: 992px) {

	footer .c {

		grid-template-columns: 1fr;
		text-align: center;
		grid-gap: 25px;
	}


	footer .right {

		text-align: center;
	}

}



/* [xs] */
@media all and (max-width: 576px) {
	footer {

		padding: 50px 0 25px;
	}

	footer .c {

		grid-gap: 0;
	}

	footer .left {

		padding-bottom: 10px;
	}

	footer .left .item {

		display: block;
		font-size: 22px;
		margin-bottom: 15px;
	}

	footer .left .item a {
		margin-left: 0;
		font-size: 18px;
	}

	footer .left .item img {
		margin-right: 8px;
	}


	footer .right .social {

		margin: 0;
		display: block;
		margin-bottom: 14px;
	}


	footer .right>a {

		margin: 0;
	}

	footer .right>a:hover {}
}

/* ===== Consent banner-aware footer spacing =====
   Adds bottom padding to footer ONLY while the consent banner is visible.
   The JS toggles `html.consent-open` on show/hide.
*/
:root { --consent-banner-h: 84px; }
@media (max-width: 640px) { :root { --consent-banner-h: 112px; } }

html.consent-open footer {
  padding-bottom: calc(40px + var(--consent-banner-h));
}

/* Match your XS footer padding baseline of 25px */
@media (max-width: 576px) {
  html.consent-open footer {
    padding-bottom: calc(25px + var(--consent-banner-h));
  }
}
