
:root {
	/* number variables */
	--spacing-s: 24px;
	--spacing-xs: 8px;
	--spacing-m: 48px;

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

* {
	--min-screen-size: 430;
	--max-screen-size: 1440;
	--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;
}


@font-face {
  font-family: 'Aeonik';
  src: url('../assets/fonts/Aeonik Pro Light.woff2') format('woff2'),
       url('../assets/fonts/Aeonik Pro Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik';
  src: url('../assets/fonts/Aeonik Pro Medium.woff2') format('woff2'),
       url('../assets/fonts/Aeonik Pro Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}



/* text utility classes */

.subtitle-gray {
	color: #c2c5cc;
	--min-font-size: 17; --max-font-size: 24; font-size: var(--interpolate);
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.48px;
}

.subtitle1 {
	--min-font-size: 17; --max-font-size: 24; font-size: var(--interpolate);
	font-weight: 300;
	line-height: 1.2;
}

.text2 {
	--min-font-size: 17; --max-font-size: 20; font-size: var(--interpolate);
	font-family: 'Aeonik';
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0px;
}

.subtitle3 {
	--min-font-size: 23; --max-font-size: 40; font-size: var(--interpolate);
	font-weight: 700;
	line-height: 1.2;
}

.subtitle-black {
	color: #000;
	--min-font-size: 27; --max-font-size: 48; font-size: var(--interpolate);
	font-family: 'Aeonik';
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0px;
}

.text6 {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
}

.text3 {
	font-weight: 500;
	line-height: 1.2;
}

.text5 {
	font-size: 16px;
	font-family: 'Aeonik';
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0px;
}

.subtitle2 {
	--min-font-size: 27; --max-font-size: 48; font-size: var(--interpolate);
	font-family: 'Aeonik';
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0px;
}

.text4 {
	--min-font-size: 16; --max-font-size: 20; font-size: var(--interpolate);
	font-weight: 300;
	line-height: 1.5;
}

.text1 {
	font-size: 24px;
	font-family: 'Aeonik';
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0px;
}

.link {
	text-decoration: underline;
}

.bold {
	font-weight: 500;
}



/* ui objects utility classes */

.btn2 {
	display: flex;
	background-color: #00f;
	padding: 0 9px;
	border-radius: 40px;
}

.group {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0 38px 17px 75px;
	border-bottom: 2px solid #c2c5cc;
}

.input {
	border-radius: 20px;
}

.card1 {
	display: flex;
	flex-direction: column;
	padding: 30px 7px 19px 7px;
	border: 3px solid #c2c5cc;
	border-radius: 20px;
}

.card-white {
	background-color: #fff;
	border-radius: 10px;
}



/* button hover utility classes */

.hover-bright:hover {
	filter: brightness(1.2);
}

.hover-zoom:hover {
	scale: 1.05;
}

.hover-dark:hover {
	filter: brightness(0.85);
}
