:root{
	--font: 'Inter', Arial, 'Helvetica', sans-serif;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,body{
	font-family: var(--font);
	font-weight: 400;
	font-size: 15px;
	color: #000;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6,
.uk-h1,.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6,
input,select,textarea,button,a,span,div,i,em{
	font-family: var(--font);
	font-weight: 400;
}
h1,h2,h3,
.uk-h1,.uk-h2,.uk-h3{
	letter-spacing: -0.5px;
	font-weight: 700;
}
h4,h5,h6,
.uk-h4,.uk-h5,.uk-h6{
	letter-spacing: -0.5px;
}
span{
	font-family: inherit;
	font-weight: inherit;
}
a{
	color: inherit;
	cursor: pointer;
	transition: 0.3s ease all;
}
a:hover,a:focus{
	color: var(--purple);
	text-decoration: none;
}
a img{
	transition: 0.3s ease all;
}
a:hover img, a:focus img{
	filter: brightness(1.1);
}
.uk-button{
	font-weight: bold;
	border-radius: 6px;
}
.uk-input,.uk-select{
	border-radius: 6px;
}
.uk-background-white{
	background: #FFF;
}