



body.brx-body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#brx-content {
	flex: 1 0 auto;
}

#brx-footer {
	flex-shrink: 0;
}



.c-site-footer {
	position: relative;
	padding: 0;
	background-color: var(--dark-grey);
	color: var(--light);
}

.c-site-footer__inner.l-container,
.brxe-container.c-site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1.6fr);
	gap: var(--space-3xl);
	width: 100%;
	max-width: 120rem;
	margin-inline: auto;
	padding-top: var(--space-3xl);
	padding-bottom: var(--space-3xl);
	padding-inline: var(--space-m);
}



.c-site-footer__col,
.c-site-footer__company {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-s);
	min-width: 0;
}

.c-site-footer__heading {
	margin: 0 0 var(--space-xs);
	color: var(--secondary);
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.15;
}

.c-site-footer__link {
	display: inline-flex;
	width: fit-content;
	color: var(--light);
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.2s ease;
}

.c-site-footer__link:hover,
.c-site-footer__link:focus-visible {
	color: #36DAC8;
	text-decoration: none;
}



.c-site-footer__logo {
	display: block;
	width: 100%;
	max-width: 42rem;
	margin-bottom: var(--space-s);
}

.c-site-footer__logo img,
.c-site-footer__logo svg,
img.c-site-footer__logo {
	display: block;
	width: 100%;
	max-width: 42rem;
	height: auto;
}

.c-site-footer__address {
	margin: 0;
	color: var(--light);
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.45;
}

.c-site-footer__address p {
	margin: 0;
}

.c-site-footer__address strong {
	font-weight: 400;
}

.c-site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	margin-top: var(--space-m);
}

.c-site-footer__contact a,
.c-site-footer__contact-link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	color: var(--light);
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color 0.2s ease;
}

.c-site-footer__contact a:hover,
.c-site-footer__contact a:focus-visible,
.c-site-footer__contact-link:hover,
.c-site-footer__contact-link:focus-visible {
	color: #36DAC8;
	text-decoration: none;
}



.c-site-footer__bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 8rem;
	padding: var(--space-s) 9rem var(--space-s) var(--space-m);
	background-color: #C5C5C5;
	color: var(--dark-grey);
	text-align: center;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.4;
}

.c-site-footer__bottom .brxe-text-basic {
	max-width: 100%;
	margin: 0;
	font-weight: 400;
}



#brx-footer .c-site-footer__bottom > .bricks-link-wrapper {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1200;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	background-color: var(--primary);
	color: var(--light);
	text-decoration: none;
	border-radius: 0;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

#brx-footer .c-site-footer__bottom > .bricks-link-wrapper:hover,
#brx-footer .c-site-footer__bottom > .bricks-link-wrapper:focus-visible {
	background-color: var(--primary-d-1);
	color: var(--light);
	text-decoration: none;
}

.c-site-footer__backtop {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--light);
	font-size: 2.8rem;
	line-height: 1;
	pointer-events: none;
}

.c-site-footer__backtop::before {
	line-height: 1;
	color: currentColor;
}



@media (max-width: 991px) {
	.c-site-footer__inner.l-container,
	.brxe-container.c-site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-2xl);
	}

	.c-site-footer__company {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.c-site-footer__inner.l-container,
	.brxe-container.c-site-footer__inner {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
		padding-top: var(--space-2xl);
		padding-bottom: var(--space-2xl);
		padding-inline: var(--space-s);
	}

	.c-site-footer__heading {
		font-size: 2.2rem;
	}

	.c-site-footer__link,
	.c-site-footer__address,
	.c-site-footer__contact a,
	.c-site-footer__contact-link {
		font-size: 1.6rem;
	}

	.c-site-footer__logo,
	img.c-site-footer__logo {
		max-width: 32rem;
	}

	.c-site-footer__bottom {
		min-height: 7.2rem;
		padding: 1.6rem 8.8rem 1.6rem 2.4rem;
		font-size: 1.6rem;
		text-align: center;
	}

	.c-site-footer__bottom .brxe-text-basic {
		width: 100%;
		max-width: 100%;
		margin: 0;
	}

	#brx-footer .c-site-footer__bottom > .bricks-link-wrapper {
		right: 1.2rem;
		bottom: 1.2rem;
		width: 5.6rem;
		height: 5.6rem;
	}

	.c-site-footer__backtop {
		font-size: 2.4rem;
	}
}