@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a:hover {
	text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
	display: block;
	width: 1193px;
}

/* На больших устройствах устанавливаем ширину для main */
@media (max-width: 768px) {
	aside,
	nav,
	footer,
	header,
	section,
	main {
		display: block;
		width: auto;
	}
}

/* На мобильных устройствах width не устанавливается (auto) */


h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}
button {
	cursor: pointer;
}
body {
	font-family: var(--font-family);
	font-size: 18px;
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: color 0.2s ease-in;
	-o-transition: color 0.2s ease-in;
	transition: color 0.2s ease-in;
}

:root {
	--red: #d52b1e;
	--black: #242424;
	--text: #363636;
	--main: #f2f3f5;
	--blue: #2a77ef;
	--black1: #000;
	--gray: #d7d9de;
	--white: #fff;
	--green: #0cc44d;
}

:root {
	--font-family: 'Inter', sans-serif;
}
