* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Inter, sans-serif;
}

:root {
	--wb-blue: #0069ff;
	--yellow: #eda419;
	--text-black: #2b2b2b;
	--hover-bg: #f2f7ff;
	--white: #ffffff;
}

:root {
	--inner-wrapper: 1416px;
}

h1 {
	font-weight: 700;
	font-size: 70px;
	line-height: 114%;
	color: #25262c;
	margin-bottom: 16px;
	transition: font-size 0.3s;
}

h3 {
	font-weight: 700;
	font-size: 40px;
	line-height: 120%;
	color: #000000;
	margin-bottom: 64px;
	transition: font-size 0.3s;
}

h4 {
	font-weight: 700;
	font-size: 36px;
	line-height: 122%;
	color: #000000;
	transition: font-size 0.3s;
}

html, body {
	width: 100%;
	height: auto;
}

.premium-wrapper {
	background: #f5f5f5;
	min-height: 100%;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
}

section {
	padding: 64px 0;
	transition: padding 0.3s;
}

.inner-wrapper {
	width: 100%;
	max-width: var(--inner-wrapper);
	padding: 0 32px;
	margin: 0 auto;
	height: 100%;
	transition: padding 0.3s;
}

.header-wrapper {
	height: 121px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	transition: height 0.3s;
}

.logo {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
}

.header-wrapper > div:last-child {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.header-title {
	height: 55px;
	vertical-align: middle;
	line-height: 55px;
	padding-left: 24px;
	font-weight: 700;
	font-size: 32px;
	color: var(--yellow);
	border-left: 1px solid var(--text-black);
}

.contact-item {
	width: auto;
	height: 46px;
	border: 1px solid var(--wb-blue);
	border-radius: 4px;
	padding: 0px 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 500;
	font-size: 20px;
	line-height: 230%;
	color: var(--wb-blue);
	transition: all 0.3s;
}

.contact-item span {
	display: block;
}

.contact-item svg,
.contact-item svg path {
	transition: all 0.3s ease, filter 0.5s ease;
}

.contact-item:hover svg path {
	transition: all 0.3s ease, filter 0.5s ease;
	fill: #ffffff;
}

.contact-item:hover svg {
	transition: all 0.3s ease, filter 0.5s ease;
	fill: #ffffff;
}

.contact-item:hover {
	transition: background-color 0.3s;
	background-color: var(--wb-blue);
	color: #ffffff;
}

.content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.banner__section .inner-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.banner__title {
	flex: 1.2;
}

.banner__title span {
}

.banner__title span {
	font-weight: 400;
	font-size: 36px;
	line-height: 119%;
	color: #000000;
}

.banner__image {
	flex: 0.8;
}

.banner__image img {
}

.advantages__section {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 64px;
	background-color: #f5f5f5;
}

.advantages__arrow {
	position: absolute;
	top: -76px;
	right: 100px;
	z-index: 10;
}

.advantages__title {
	font-weight: 700;
	font-size: 40px;
	line-height: 120%;
	color: #000000;
}

.advantages__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
	color: #25262c;
}

.advantages__list-item {
	padding: 32px;
	display: flex;
	flex-direction: row;
	gap: 32px;
	border-radius: 24px;
	background-color: #ffffff;
}

.advantages__list-item:first-child {
	border: 2px solid var(--yellow);
}

.advantages__list-item div:first-child {
	min-width: 84px;
	min-height: 84px;
}

.conditions__section {
	display: flex;
	flex-direction: column;
	background-color: #f5f5f5;
}

.conditions__title {
	font-weight: 700;
	font-size: 40px;
	line-height: 120%;
	color: #000000;
}

.conditions__list {
	display: flex;
	flex-direction: row;
	gap: 24px;
	margin-bottom: 24px;
}

.conditions__list > div {
	border-radius: 24px;
	padding: 32px;
	background-color: #ffffff;
	flex: 1;
}

.conditions__description {
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
	color: #25262c;
}

.section__help {
	display: flex;
	flex-direction: column;
	gap: 64px;
	background-color: #ffffff;
}

.help__list {
	display: none;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
	color: #000000;
	margin-top: 24px;
	margin-bottom: 64px;
}

.help__list.active {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.help__item-wrapper {
	padding: 24px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #f6f6f6;
	border-radius: 8px;
}

.help__item,
.help__item-tools {
	flex: 1;
}

.help__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.help__item-tools {
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	gap: 16px;
	text-align: right;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
}

.help__item div:first-child {
	border-radius: 4px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-items: center;
	font-weight: 900;
	font-size: 24px;
	line-height: 133%;
	color: #000000;
	background: #ffffff;
}

.help__item > div:nth-child(2) {
	flex: 1;
}

.help__item > div:last-child {
	flex: 1;
	display: flex;
	flex-direction: row;
}

.yellow__text {
	color: var(--yellow);
}

.call_icon {
	cursor: pointer;
	border: 1px solid var(--wb-blue);
	border-radius: 8px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-items: center;
	justify-content: center;
	transition: all 0.3s ease, filter 0.5s ease;
}

.call_icon svg {
	width: 32px;
	height: 32px;
	transition: all 0.3s ease, filter 0.5s ease;
}

.call_icon:hover {
	transition: all 0.3s ease, filter 0.5s ease;
	background-color: var(--wb-blue);
}

.call_icon:hover svg path {
	transition: all 0.3s ease, filter 0.5s ease;
	fill: #ffffff;
}

.test {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
}

.tabs-wrapper {
	width: fit-content;
}

.tabs-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px;
	border-radius: 6px;
	background: #f2f7ff;
	width: fit-content;
	justify-content: flex-start;
}

.tab-item {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	border-radius: 6px;
	padding: 4px 16px;
	background: unset;
	color: var(--wb-blue);
	width: auto;
	transition: all 0.3s;
}

.tab-item:not(.active):hover {
	background-color: var(--wb-blue);
	color: var(--hover-bg);
	transition: all 0.3s;
}

.tab-item.active {
	background: var(--wb-blue);
	color: #ffffff;
}

.tabs-item:hover {
}

.link_register {
	cursor: pointer;
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	text-align: right;
	font-weight: 400;
	font-size: 24px;
	line-height: 133%;
	color: var(--wb-blue);
	text-decoration: none;
}

.link_register img {
	width: 24px;
	height: 24px;
}

.link_register:hover {
	text-decoration: underline;
}

.button {
	display: block;
	text-decoration: none;
	border-radius: 8px;
	padding: 12px 32px;
	max-width: 264px;
	width: 100%;
	height: 64px;
	border: 0;
	background: var(--wb-blue);
	font-weight: 700;
	font-size: 20px;
	line-height: 200%;
	color: var(--white);
	transition: all 0.3s;
	text-align: center;
}

.button:hover {
	background-color: var(--hover-bg);
	color: var(--wb-blue);
	border: 1px solid var(--wb-blue);
	transition: all 0.3s;
}

.footer {
	padding: 24px 0;
	width: 100%;
	background-color: #323232;
}

.footer .logo {
	display: none;
}

.footer__top {
	padding-bottom: 24px;
	width: 100%;
	border-bottom: 1px solid #474747;
}

.footer__top .center-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
}

.footer__top-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px 64px;
	line-height: 24px;
	font-size: 20px;
	color: #ffffff;
}

.footer__top-text a {
	color: #ffffff;
	text-decoration: underline;
}

.footer__top-text p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
}

.footer__top-text p span {
	display: block;
}

.footer__top .logo {
	margin: 0 auto 32px;
}

.footer__bottom {
	padding-top: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
	color: #ffffff;
}

.footer__bottom h4 {
	line-height: 24px;
	font-size: 16px;
	color: #ffffff;
}

.footer__bottom p {
	line-height: 18px;
	font-size: 12px;
	font-weight: 300;
}

.footer__bottom-column {
	width: 100%;
}

.footer__copy {
	width: 100%;
	line-height: 24px;
	font-size: 16px;
	text-align: center;
}

.center-box {
	margin: 0 auto;
	padding: 0 16px;
	max-width: var(--inner-wrapper);
	width: 100%;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.social__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 24px;
	flex: 1;
}

@media screen and (max-width: 1200px) {
	section {
		padding: 48px 0;
		transition: padding 0.3s;
	}
	
	.header-wrapper {
		height: 98px;
		transition: height 0.3s;
	}
	
	h1 {
		font-size: 50px;
		transition: font-size 0.3s;
	}
	
	h4 {
		font-size: 32px;
		transition: font-size 0.3s;
	}
	
	.inner-wrapper {
		padding: 0 24px;
		transition: padding 0.3s;
	}
	
	.advantages__list-item {
		padding: 24px;
	}
	
	.contact-item span {
		display: none;
	}
	
	.conditions__list > div {
		padding: 24px;
	}
	
	.conditions__description {
		font-size: 20px;
	}
	
	.help__item-wrapper {
		padding: 24px;
	}
	
	.help__list {
		font-size: 20px;
		transition: font-size 0.3s;
	}
	
	.help__item div:first-child {
		width: 52px;
		height: 52px;
	}
	
	.link_register {
		font-size: 20px;
	}
	
	.test {
		font-size: 20px;
	}
	
	.footer__top .center-box {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media screen and (max-width: 900px) {
	.conditions__list {
		flex-direction: column;
	}
}

@media screen and (max-width: 800px) {
	.advantages__arrow {
		top: -40px;
		transform: scale(0.7);
		transition: all 0.3s;
	}
	
	section {
		padding: 32px 0;
	}
	
	.header-wrapper {
		height: 78px;
	}
	
	h1 {
		font-size: 40px;
		transition: font-size 0.3s;
	}
	
	h3 {
		font-size: 28px;
		margin-bottom: 32px;
		transition: all 0.3s;
	}
	
	h4 {
		font-size: 24px;
		transition: font-size 0.3s;
	}
	
	.inner-wrapper {
		padding: 0 16px;
	}
	
	.logo {
		gap: 12px;
	}
	
	.logo img {
		height: 34px;
	}
	
	.contact-item {
		width: 32px;
		height: 32px;
		padding: 6px;
	}
	
	.header-title {
		padding-left: 12px;
		height: 34px;
		line-height: 34px;
		font-size: 24px;
	}
	
	.banner__title span {
		font-size: 24px;
	}
	
	.advantages__list-item {
		flex-wrap: wrap;
		gap: 16px;
		transition: all 0.3s;
		padding: 16px;
	}
	
	.advantages__list-item div:first-child {
		min-width: 32px;
		min-height: 32px;
		width: 32px;
		height: 32px;
	}
	
	.conditions__list > div {
		padding: 16px;
	}
	
	.conditions__description {
		font-size: 16px;
	}
	
	.help__item-wrapper {
		padding: 16px;
	}
	
	.help__item div:first-child {
		width: 40px;
		height: 40px;
	}
	
	.help__list {
		font-size: 16px;
		margin-bottom: 32px;
		transition: font-size, margin-bottom 0.3s;
	}
	
	.link_register {
		font-size: 16px;
	}
	
	.help__item, .help__item-tools {
		flex: unset;
	}
	
	.test {
		font-size: 16px;
	}
}

@media screen and (max-width: 600px) {
	.banner__section .inner-wrapper {
		flex-direction: column;
	}
	
	.header-wrapper {
		height: 68px;
		transition: height 0.3s;
	}
	
	.logo img {
		height: 28px;
		transition: height 0.3s;
	}
	
	.header-title {
		padding-left: 12px;
		height: 28px;
		line-height: 28px;
		font-size: 16px;
		transition: all 0.3s;
	}
	
	.tabs-wrapper {
		width: 100%;
		transition: width 0.3s;
	}
	
	.tabs-list {
		flex-direction: column;
		width: 100%;
		transition: width 0.3s;
	}
	
	.help__item-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.help__item-tools {
		justify-content: flex-start;
	}
	
	.button {
		max-width: 100%;
		transition: all 0.3s;
	}
}

@media screen and (max-width: 450px) {
	.logo {
		gap: 6px;
		transition: gap 0.3s;
	}
	
	.logo img {
		height: 22px;
		transition: height 0.3s;
	}
	
	.header-title {
		padding-left: 6px;
		height: 22px;
		line-height: 22px;
		transition: all 0.3s;
	}
}

@media (min-width: 960px) {
	.footer__top .logo {
		margin: 0;
		display: block;
	}
	
	.footer__bottom {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 44px;
	}
	
	.footer__bottom-column:first-child {
		width: 320px;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	
	.footer__bottom-column {
		width: calc(100% - 364px);
	}
	
	.footer__copy {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
}
