
:root {
	/* responsive margins / paddings */
	--margin-sm: 16px;
	--margin-md: 32px;
}

* {
	--min-screen-size: 430;
	--max-screen-size: 1359;
	--interpolate-diff: calc(var(--max-font-size) - var(--min-font-size));
	--interpolate: clamp(calc(var(--min-font-size) * 1px), calc((var(--min-font-size) * 1px) + var(--interpolate-diff) * ((100vw - calc(var(--min-screen-size) * 1px)) / (var(--max-screen-size) - var(--min-screen-size)))), calc(var(--max-font-size) * 1px));
}

html {
	height: 100%;
	font-size: 16px;
}

body {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: 'Inter';
	background-color: #f9fafb;
	overflow: auto;
}



/* text utility classes */

.text2 {
	color: rgba(255, 255, 255, 0.8);
	--min-font-size: 15; --max-font-size: 16; font-size: var(--interpolate);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0px;
}

.text1 {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.429;
	letter-spacing: 0.7px;
}

.link-black {
	color: #000;
	font-weight: 500;
	text-decoration: underline;
}

.sub-text {
	font-weight: 400;
}

.link-white {
	color: #fff;
	text-decoration: underline;
}



/* section utility classes */

.section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 24px;
}

.div {
	position: absolute;
	background-color: #000;
}



/* container */

.container {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.container-text {
	margin-right: 20px;
	color: #000;
	--min-font-size: 16; --max-font-size: 18; font-size: var(--interpolate);
	font-weight: 400;
}

.container-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	--min-font-size: 17; --max-font-size: 18; font-size: var(--interpolate);
	padding-top: 17px;
	border-top: 1px solid #e5e7eb;
}
/* end container*/




/* column */

.column {
	display: flex;
	flex-direction: column;
}

.column-text1 {
	color: #000;
	font-weight: 500;
}

.column-text2 {
	margin-top: -1px;
	color: #364153;
	font-weight: 400;
}
/* end column*/




/* footer */

.footer {
	container: footer / inline-size;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #4a5565;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.429;
	letter-spacing: -0.15px;
	background-color: #fff;
	padding: 20px 104px;
	border-top: 1px solid #e5e7eb;
	/* Sticky footer: never shrink, and push to bottom when main has room */
	flex-shrink: 0;
	margin-top: auto;
}

.footer-div {
	width: 100%;
	max-width: 1280px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/*
 * Logo scales fluidly between 72px (small phone) and 116px (desktop).
 * Height is half the width (2:1 ratio of the visible logo content).
 * The negative vertical margin cancels the SVG's internal padding; it is
 * derived from the same ratio used at full size: 13/116 ≈ 0.1121.
 */
.footer-container1 {
	--logo-w: clamp(72px, 12vw, 116px);
	width: var(--logo-w);
	height: calc(var(--logo-w) / 2);
	margin: calc(var(--logo-w) * -0.1121) 0;
	flex-shrink: 0;
}

.footer-container2 {
	margin-right: -1px;
	width: 546px;
	max-width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 1;
	padding-top: 1px;
}

.footer-text-p {
	margin-top: 1px;
	flex-grow: 1;
	text-align: left;
}

.footer-text-span {
	margin-left: 2px; margin-top: 1px;
	color: #d1d5dc;
	text-align: left;
}

.footer-link-a {
	margin-top: 1px;
	text-decoration: underline;
	text-align: left;
}
/* end footer*/




/** breakpoints (margin / paddings) **/

@media screen and (max-width: 1280px) {
	.container-text {
		margin-inline: 0;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 16px 24px;
	}
}

@media screen and (max-width: 480px) {
	.footer {
		padding: 12px 16px;
	}

	.container-text {
		margin-right: 0;
	}
}



/* container queries (flex rows) */

@container footer (width < 753px) {
	.footer-div {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.footer-div > * {
		margin-right: unset !important; margin-top: unset !important;
		text-align: center;
	}
	.footer-div > .footer-container1 {
		margin: 0;
	}
	.footer-div > .footer-container2 {
		width: 100%;
		max-width: 546px;
		justify-content: center;
		flex-wrap: wrap;
	}
	.footer-text-p {
		text-align: center;
		flex-grow: 0;
	}
}
