* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

.container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

/* header */
.header {
	padding: 25px 0;
	background: white;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__burger {
	display: none;
}

.header__logo {
	width: 140px;
	height: 49px;
}
.header__logo img {
	width: 100%;
	height: 100%;
}

.header__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 100px;
}

.header__menu {
}

.header__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 35px;
	list-style: none;
}

.header__list-item a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #222222;
	text-decoration: none;
}
.header__list-item a.active {
	color: #1e73be;
}

.header__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

.header__btn {
	padding: 10px 50px;
	background: #33d1d8;
	border-radius: 9px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #fff;
	text-decoration: none;
}

/* footer */
.footer {
	padding: 25px 0;
	background: white;
}
.footer__text {
	text-align: center;
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	column-rule: #222222;
}
.footer__text a {
	text-decoration: underline;
	color: #1e73be;
}
/* main */
.main {
	background: #f7f8f9;
	padding: 20px 0;
}

.content {
	border-radius: 10px;
	background: white;
	padding: 45px 40px;
}
.promo {
	padding: 0 0 35px 0;
	margin: 0 0 40px 0;
	border-bottom: 2px solid #dedede;
}
.promo h1 {
	font-size: 40px;
	line-height: 50px;
	font-weight: 500;
	color: #222222;
	margin: 0 0 40px 0;
}
.promo__img {
	width: auto;
	height: auto;
	margin: 0 0 40px 0;
	text-align: center;
}
.promo__img img {
	width: auto;
	height: auto;
}

.promo__btn {
	padding: 15px 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffe222;
	border-radius: 9px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #222222;
	width: fit-content;
	margin: 0 auto;
	text-decoration: none;
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 15px 0;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	width: 50%;
	padding: 13px 9px;
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
	color: #222222;
	border: 1px solid #222222;
}
.table table td:nth-child(even) {
	font-weight: 700;
}

.content h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	color: #222222;
	margin: 0 0 15px 0;
}
.content h3 {
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
	color: #222222;
	margin: 0 0 15px 0;
}
.content p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #222222;
	margin: 0 0 10px 0;
}
.content ul,
.content ol {
	padding: 0 0 0 20px;
	margin: 15px 0;
}
.content ul li,
.content ol li {
	margin: 0 0 10px 0;
}

.img-cov {
	margin: 15px 0;
	width: 100%;
	height: 100%;
}
.img-cov img {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.header__wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.header__logo {
		width: 110px;
		height: 40px;
	}
	.header__info {
		width: 100%;
	}
	.header__menu {
		display: none;
	}
	.header__buttons {
		width: 100%;
	}
	.header__btn {
		width: 100%;
		padding: 10px 25px;
	}

	.header__burger {
		display: block;
		position: absolute;
		top: 10px;
		right: 15px;
	}

	.promo__img img {
		width: 100%;
		height: 100%;
	}
	.promo__btn {
		padding: 15px 25px;
		width: 100%;
		white-space: nowrap;
	}
	.content {
		padding: 35px 30px;
		border-radius: 0px;
	}
	.main .container {
		padding: 0;
	}
	.promo h1 {
		font-size: 24px;
		line-height: 30px;
	}
	.content h2 {
		font-size: 22px;
		line-height: 30px;
	}
	.content h3 {
		font-size: 18px;
		line-height: 25px;
	}
}
.footer-menu ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap:20px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.footer-menu ul a {
	color:inherit;
	text-decoration: none;
}
.footer-menu ul a:hover {
	text-decoration: underline;
}