* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--font-family: "Nunito", sans-serif;
	--poppins: "Poppins", sans-serif;
	--font-color: #535968;

	/* Font sizes */
	--font-size-smallest: 14px;
	--font-size-smaller: 16px;
	--font-size-small: 18px;
	--font-size-mid: 20px;
	--font-size-big: 25px;

	/* Font weights */
	--regular: 400;
	--semibold: 600;
	--bold: 700;
	--extrabold: 800;

	/* Font colors & background */
	--active-color: #6273e9;
	--active-bg: #f1f4fd;

	/* Border radius */
	--little-radius: 8px;
	--basic-radius: 16px;
	--advanced-radius: 21px;

	/* Box shadow */
	/* --box-shadow: 0px 2px 10px #dfe2ea; */
	--box-shadow: 0px 4px 12px #dfe2ea;

	/* Quick stats icon regular */
	--qs-icon-regular: 25px;
}

body {
	font-family: var(--font-family);
	color: var(--font-color);
	overflow-x: hidden;
	max-height: 100vh;
	position: relative;
	width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

@media screen and (max-width: 1280px) {
	:root {
		/* Font sizes */
		--font-size-smallest: 12px;
		--font-size-smaller: 14px;
		--font-size-small: 16px;
		--font-size-mid: 18px;

		/* Quick stats icon regular */
		--qs-icon-regular: 23px;
	}
}
