
:root {
	/* color variables */
	--black: #0b0b0b;
	--sec-white: #fff;
	--sec-grey02: #d0d0d0;

	/* 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;
}



/* text utility classes */

.subtitle-black {
	color: #0b0b0b;
	--min-font-size: 22; --max-font-size: 36; font-size: var(--interpolate);
	font-family: 'Inter';
	font-weight: 900;
	line-height: 1.278;
	letter-spacing: 0px;
}

.title-yellow {
	color: #bcca4c;
	font-size: 65px;
	font-family: 'Inter';
	font-weight: 800;
	line-height: 0.369;
	letter-spacing: 0px;
}

.text-dark3 {
	color: #3c3c3c;
	font-size: 16px;
	line-height: 1.5;
}

.subtitle {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.278;
}

.text-dark1 {
	color: #2c2c2c;
	font-weight: 400;
	line-height: 1.556;
}

.text-dark2 {
	color: #2c2c2c;
	--min-font-size: 16; --max-font-size: 18; font-size: var(--interpolate);
	font-family: 'Inter';
	font-weight: 400;
	line-height: 1.556;
	letter-spacing: 0px;
}

.sub-text-dark {
	color: #2c2c2c;
	font-weight: 400;
}

.bold-red {
	color: #ed1c24;
	font-weight: 800;
}

.bold-sec-white {
	color: var(--sec-white);
	font-weight: 700;
}

.bold {
	color: #9aca3c;
	font-size: 48px;
	font-weight: 700;
}

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

.sub-text {
	color: #9aca3c;
}

.sub-text-white {
	color: #fff;
}

.bold-dark {
	color: #2c2c2c;
	font-weight: 800;
}

.sub-text-yellow {
	color: #bcca4c;
}

.bold2 {
	font-weight: 700;
}

.bold3 {
	font-weight: 800;
}

.sub-text-black {
	color: #0b0b0b;
}



/* section utility classes */

.section {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-position: top left;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0 24px;
}



/* ui objects utility classes */

.card2 {
	width: 24px; height: 24px;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
}

.circle-yellow {
	width: 176px; height: 176px;
	background-color: #bcca4c;
	padding: 94px 4px 40px 4px;
	border: 5px solid #e0e0e0;
	border-radius: 50%;
}

.input {
	width: 280px;
	border-radius: 10px;
}

.card1 {
	width: calc(100% - 32px);
	display: flex;
	flex-direction: column;
	border: 1px solid #cfcfcf;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}



/* button hover utility classes */

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