/* Шрифты */
@font-face {
	font-family: 'Outfit';
	src: url("../fonts/Outfit-VariableFont_wght.ttf");
}
@font-face {
	font-family: 'Inter';
	src: url("../fonts/Inter-VariableFont_slnt\,wght.ttf");
}

/* Цвета */
:root {
	--main-color: #215FFF; /* старый цвет - #FF9933 */
	--main-bg: #F4F4F4;
	--main-text: #1B192A;
	--text: #514f61;
	--white: #ffffff;
	--btn-hover: #2c87ff;
	--text-hover: #4898ff;
	--shadow: 0px 6px 25px 0px rgba(125, 69, 255, 0.06);
}

/* Исправление браузерного умолчания */
html {
	/* font-family: Roboto, 'Segoe UI', Tahoma, sans-serif; */
	box-sizing: border-box;
}

*, *:before, *:after {
   box-sizing: inherit;
   font-family: 'Inter';
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--main-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Outfit', Tahoma;
	margin: 0;
	font-size: 50px;
	color: var(--main-text);
	word-break: break-word;
	line-height: 136%; /* 68px */
	z-index: 2;
	font-weight: 700;
}

p, ul li {
	font-family: 'Inter', Tahoma;
	margin: 0;
	font-style: normal;
	font-size: 18px;;
	font-weight: 500;
	line-height: 160%; /* 28.8px */
	color: var(--text);
}

ul {
	margin: 0;
	padding-inline-start: 20px;
}

ul li {
	padding-left: 10px;
	margin-bottom: 20px;
	list-style-type: auto;
}
ul li:last-child {
	margin-bottom: 0px;
}

div {
	display: block;
}

input, button, textarea {
	border: none;
	outline: none;
	background: none;
	outline: none !important;
	user-select: none; /* Отмена выделения*/
}

input, textarea {
	resize: none;
}

hr{
	margin: 0;
	border: none;
	float: left; /* чтобы в IE6 устранить отступ по умолчанию */
}

img {
	vertical-align: middle;
}

a {
	color: var(--main-text);
	text-decoration: none;
	transition: .2s;
}

a:hover {
	color: var(--main-color);
}