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

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
}

img,
video {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.main {
	flex: 1;
	background: #fff;
}

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

/* header */
.header {
	padding: 22.5px 0;
	background: #fff;
	border-bottom: 1px solid #efefef;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__logo {
	width: 135px;
	height: 65px;
}

.header__logo img {
	max-width: 100%;
	max-height: 100%;
}

.header__burger {
	display: none;
	width: 24px;
	height: 18px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	outline: none;
}
.header__burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #0b111e;
	border-radius: 5px;
}
.header__burger.active span {
	display: none;
}

.header__burger.active span:first-child {
	display: block;
	transform: rotate(45deg) translateY(5px);
}
.header__burger.active span:last-child {
	display: block;
	transform: rotate(-45deg) translateY(-6px);
}

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

.header__list-item a {
	color: #0b111e;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
}
/* section promo */
.promo {
	padding: 40px 0;
}
.promo__title {
	margin: 0 0 10px 0;
	color: #0b111e;
	font-size: 38px;
	line-height: 50px;
	font-weight: 700;
}

.promo__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}

.promo__item:first-child {
	width: 100%;
}

.promo__item:last-child {
	min-width: 270px;
	max-width: 270px;
}

.promo__banner p {
	padding: 13px 0;
	color: #ffffff;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	text-align: center;
	background-color: #020ae6;
}

.promo__banner p:last-child {
	margin: -5px 0 0 0;
}

.promo__banner img {
	max-width: 100%;
}

.promo__block {
	background: #f1f1f1;
	padding: 0 0 40px 0;
}
.promo__block:last-child {
	padding: 0 0 20px 0;
	border-radius: 0 0 35px 35px;
}

.promo__block-title {
	border-radius: 35px 35px 0 0;
	color: #ffffff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	text-align: center;
	padding: 25px 0;
	background: #000000;
	margin: 0 0 15px 0;
}

.promo__block-img {
	width: 225px;
	margin: 0 auto 30px auto;
}
.promo__block-img img {
	max-width: 100%;
}

.promo__block-subTitle {
	color: #0b111e;
	font-size: 16px;
	line-height: 24 px;
	text-align: center;
	font-weight: 400;
	margin: 0 0 40px 0;
}

.promo__block-descr {
	color: #000000;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	margin: 0 0 20px 0;
}

.promo__block-btn {
	width: calc(100% - 40px);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	padding: 12.5px 0;
	background: #fa2590;
	border-radius: 16px;
	margin: 0 auto;
}

/* section info */
.info {
	padding: 30px 0 70px 0;
}
.info__block {
	border-top: 2px solid #efefef;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.info__block:last-child {
	border-bottom: 2px solid #efefef;
}

.info__block-img {
	width: 280px;
}

.info__block-img img {
	max-width: 100%;
}

.info__block-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info__block-text p {
	color: #0b111e;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	text-align: center;
}

.info__block-text h3 {
	color: #000000;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
}

.info__block-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	padding: 12.5px 0;
	background: #fa2590;
	border-radius: 16px;
	min-width: 280px;
	max-width: 280px;
}

/* section content */

.content .table {
	margin: 30px 0;
	width: 100%;
}

.content .table table {
	width: 100%;
	overflow: auto;
	border-collapse: collapse;
}

.content .table table td {
	width: 50%;
	padding: 15px;
	border: 2px solid #efefef;
	color: #0b111e;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

.content h2 {
	margin: 0 0 10px 0;
	color: #0b111e;
	font-size: 26px;
	line-height: 30pxpx;
	font-weight: 700;
}

.content h3 {
	margin: 0 0 10px 0;
	color: #0b111e;
	font-size: 20px;
	line-height: 24pxpx;
	font-weight: 700;
}

.content strong {
	display: block;
	margin: 0 0 10px 0;
	color: #0b111e;
	font-size: 26px;
	line-height: 30pxpx;
	font-weight: 700;
}

.content p {
	color: #0b111e;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 0 15px 0;
}

.content ul,
.content ol {
	padding: 0 0 0 15px;
	margin: 0 0 15px;
}

.content ul li,
.content ol li {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin: 0 0 5px 0;
}

.content ul li a:hover {
	color: #fa2590;
}

.footer {
	border: 1px solid #efefef;
	padding: 0 0 50px 0;
}
