/**
 * Site footer — test3.ant elementor-8973
 */

.hq-site-footer {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	clear: both;
	margin-top: 0;
	padding: 2.5em 0 1.5rem;
	color: #ffffff;
	overflow: hidden;
	min-height: clamp(460px, 50vh, 560px);
	isolation: isolate;
}

.hq-site-footer a {
	color: inherit;
	text-decoration: none;
}

.hq-site-footer__background {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		135deg,
		rgb(2, 1, 2) 0%,
		rgb(20, 5, 30) 45%,
		rgb(70, 25, 110) 80%,
		#d1b4d2 100%
	);
}

.hq-site-footer__background::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--hq-footer-bg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.58;
	pointer-events: none;
}

@media (min-width: 1025px) {
	.hq-site-footer__background::before {
		background-attachment: fixed;
	}
}

.hq-site-footer__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: min(100% - 2rem, 1170px);
	min-height: clamp(400px, 46vh, 500px);
	margin-inline: auto;
	padding: 0 0 1rem;
}

.hq-site-footer__logo-wrap {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 95%;
	max-width: 95%;
	margin: 0 auto;
	text-align: center;
}

.hq-site-footer__logo-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.hq-site-footer__logo {
	display: block;
	width: clamp(150px, 15vw, 176px);
	max-width: 19%;
	height: 120px;
	object-fit: contain;
	object-position: center top;
}

.hq-site-footer__body {
	flex: 0 0 auto;
	width: 100%;
	margin-top: 1rem;
	padding-top: 0;
}

.hq-site-footer__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	width: 100%;
	align-items: start;
}

.hq-site-footer__about {
	max-width: 100%;
}

.hq-site-footer__intro {
	margin: 0;
	font-family: Andika, system-ui, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.4px;
	color: #ffffff;
}

.hq-site-footer__title {
	margin: 0;
	font-family: Andika, system-ui, sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.4px;
	color: #d1b4d2;
	text-align: start;
}

.hq-site-footer__list {
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
}

.hq-site-footer__item + .hq-site-footer__item {
	margin-top: 2px;
}

.hq-site-footer__link {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 0;
	color: #ffffff;
	font-family: Andika, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.25;
	text-decoration: none;
	transition: color 0.3s ease;
}

.hq-site-footer__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding-inline-end: 10px;
}

.hq-site-footer__icon {
	width: 17px;
	height: 17px;
	fill: #e4b5f3;
	transition: fill 0.3s ease;
}

.hq-site-footer__link-label {
	transition: color 0.3s ease;
}

.hq-site-footer__link:hover .hq-site-footer__link-label,
.hq-site-footer__link:focus-visible .hq-site-footer__link-label {
	color: #e5b9ee;
}

.hq-site-footer__credit {
	flex: 0 0 auto;
	width: 100%;
	margin-top: auto;
	padding: 0.75rem 0 0;
	text-align: start;
}

.hq-site-footer__credit-line {
	margin: 0;
	font-family: Andika, system-ui, sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
	color: #ffffff;
	white-space: nowrap;
}

.hq-site-footer__credit strong {
	font-weight: 700;
}

.hq-site-footer__credit a {
	color: #f0c2f2;
	transition: color 0.3s ease;
}

.hq-site-footer__credit a:hover,
.hq-site-footer__credit a:focus-visible {
	color: #ffffff;
	text-decoration: none;
}

@media (min-width: 768px) {
	.hq-site-footer__columns {
		grid-template-columns: minmax(0, 1.21fr) minmax(0, 1.08fr) minmax(0, 0.79fr) minmax(0, 0.58fr) minmax(0, 1fr);
		gap: 28px;
		align-items: start;
	}

	.hq-site-footer__about {
		grid-column: 1;
		max-width: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hq-site-footer {
		min-height: 420px;
		padding-bottom: 1.25rem;
	}

	.hq-site-footer__inner {
		min-height: 380px;
	}

	.hq-site-footer__logo {
		width: 36%;
		max-width: 220px;
		height: auto;
		aspect-ratio: 1;
	}

	.hq-site-footer__body {
		margin-top: 0.875rem;
	}

	.hq-site-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 676px;
		margin-inline: auto;
	}

	.hq-site-footer__about {
		grid-column: 1 / -1;
		max-width: 406px;
	}
}

@media (min-width: 1025px) {
	.hq-site-footer {
		min-height: 520px;
		padding-bottom: 1.75rem;
	}

	.hq-site-footer__inner {
		min-height: 460px;
	}

	.hq-site-footer__logo {
		width: 176px;
		max-width: 222px;
		height: 120px;
	}

	.hq-site-footer__body {
		margin-top: 1.25rem;
	}

	.hq-site-footer__credit {
		padding-top: 1rem;
	}
}

@media (max-width: 767px) {
	.hq-site-footer {
		min-height: auto;
		padding: 2.25rem 0 calc(2.5rem + env(safe-area-inset-bottom, 0px));
	}

	.hq-site-footer__inner {
		width: min(100% - 2rem, 500px);
		min-height: 0;
		padding-inline: 0;
		gap: 0;
	}

	.hq-site-footer__background::before {
		background-attachment: scroll;
		background-position: top center;
	}

	.hq-site-footer__logo-wrap {
		justify-content: center;
		width: 100%;
		max-width: 332px;
		margin-inline: auto;
	}

	.hq-site-footer__logo {
		width: clamp(120px, 36vw, 168px);
		max-width: 168px;
		height: auto;
		aspect-ratio: 1;
		object-position: center center;
	}

	.hq-site-footer__body {
		margin-top: 1.25rem;
		width: 100%;
	}

	.hq-site-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 1.25rem;
		align-items: start;
	}

	.hq-site-footer__about {
		grid-column: 1 / -1;
		text-align: start;
		padding-bottom: 0.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.hq-site-footer__intro {
		max-width: none;
		margin-inline: 0;
		font-size: 15px;
		line-height: 1.55;
		text-align: start;
	}

	.hq-site-footer__column {
		text-align: start;
		min-width: 0;
	}

	.hq-site-footer__title {
		margin-bottom: 0.35rem;
		font-size: 18px;
		text-align: start;
	}

	.hq-site-footer__list {
		margin-top: 0.35rem;
	}

	.hq-site-footer__item + .hq-site-footer__item {
		margin-top: 0;
	}

	.hq-site-footer__link {
		justify-content: flex-start;
		min-height: 2.75rem;
		padding: 0.4rem 0;
	}

	.hq-site-footer__link-icon {
		padding-inline-end: 8px;
	}

	.hq-site-footer__credit {
		margin-top: 1.75rem;
		padding-top: 1.25rem;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		text-align: center;
	}

	.hq-site-footer__credit-line {
		font-size: 15px;
		line-height: 1.45;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.hq-site-footer__inner {
		width: min(100% - 1.5rem, 500px);
	}

	.hq-site-footer__columns {
		grid-template-columns: 1fr;
		gap: 1.35rem;
	}

	.hq-site-footer__column {
		padding-bottom: 0.25rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.hq-site-footer__column:last-of-type {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.hq-site-footer__credit-line {
		font-size: 14px;
	}
}
