@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

input,
textarea {
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

button {
	font-family: inherit;
}
a {
	text-decoration: none;
}
ul{
	list-style: none;
}
img{
	max-width: 100%;
}
html{
	scroll-behavior: smooth;
}

:root{
	--primary-color: #2D69E0;
	--text-color: #3F4246;
	--text-color2: #7F7F7F;
	--grey-color: #FAFAFA;
}
body {
	font-family: "Inter", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background-color: #fff;
	color: var(--text-color);
	transition: filter 0.3s ease;
}

code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
		monospace;
}
.container{
	width: 1400px;
	padding: 0px 20px;
	margin: 0 auto;
}


::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background-color: #ffffff;
	outline: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}

::-webkit-scrollbar-thumb {
	background-color: #dbdbdb;
	border-radius: 20px;
}