* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.stars__header,
.stars__feedback {
	width: 100%;
	position: absolute;
	z-index: -1;
	display: block;
	background-color: rgb(190, 204, 228);
}

body {
	background-color: #f5f6fb;
	color: #101f33;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
}

body::before {
	content: "";
	height: 84px;
	display: block;
}

svg path {
	transition: fill 0.2s;
}

a {
	color: #101f33;
	text-decoration: none;
	transition: color 0.2s;
}

a:hover {
	color: #2967F6;
}

a:hover path {
	fill: #2967F6;
}

textarea {
	resize: vertical;
}

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

.button {
	outline: none;
	border: 0;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.1s;
}

body.header__menu_opened {
	overflow: hidden;
}

.body-modal_opened {
	overflow: hidden;
}

body.header__menu_opened .navbar {
	display: block;
}

body.header__menu_opened .mobile__menu::before {
	transform: rotate(45deg);
	top: 50%;
}

body.header__menu_opened .mobile__menu>div {
	display: none;
}

body.header__menu_opened .mobile__menu::after {
	transform: rotate(-45deg);
	top: 50%;
}

.container {
	max-width: 1260px;
	margin: 0 auto;
}

.wrapper-l {
	padding: 0 20px;
}

.header__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: #f5f6fb;
	height: 84px;
}

.header__canvas {
	background: linear-gradient(to bottom, transparent 0%, #f5f6fb 99%);
}

/* banner */

.banner {
	margin-bottom: 32px;
}

.banner__wrapper {
	padding: 160px 20px 48px;
}

.banner__title {
	font-size: 60px;
	margin-bottom: 48px;
}

.scroll__down {
	position: relative;
	width: 32px;
	height: 64px;
	border: 3px solid #000000;
	border-radius: 16px;
}

.scroll__down::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 8px;
	height: 8px;
	background-color: #000000;
	border-radius: 50%;
	animation: scrollDown 1.8s infinite ease-in-out;
}

@keyframes scrollDown {
	0% {
		transform: translate(-50%, 0%);
		opacity: 1;
	}

	80% {
		transform: translate(-50%, 280%);
		opacity: 0;
	}
}

.mobile__header {
	display: none;
	padding: 20px 0;
	height: 84px;
}

.nav__links {
	display: flex;
	gap: 48px;
	font-size: 16px;
}

.mobile__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav__link_item {
	text-decoration: none;
	color: #101f33;
}

.header__login {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header__login_button {
	padding: 8px 20px;
	border: 1px solid #2967F6;
	background-color: #f5f6fb;
	font-size: 16px;
	font-weight: 500;
	border-radius: 36px;
}

.header__login_button:hover {
	background-color: #2967F6;
	color: #f5f6fb;
}

.header__login_button:focus {
	background-color: #275fe2;
	color: #f5f6fb;
}

/* мобильное меню */

.mobile__header .navbar {
	display: none;
	position: fixed;
	background-color: #f5f6fb;
	margin-top: 84px;
	padding: 60px 0;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	text-align: center;
}

.desktop__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

.mobile__menu {
	width: 36px;
	height: 36px;
	position: relative;
	cursor: pointer;
}

.logo {
	font-size: 0;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
	cursor: pointer;
	background-image: url(../images/logo.svg);
	width: 140px;
	min-width: 140px;
	height: 20px;
}

.mobile__menu::before,
.mobile__menu>div,
.mobile__menu::after {
	position: absolute;
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	background-color: #414145;
	border-radius: 1px;
}

.mobile__menu::before {
	top: 4px;
}

.mobile__menu>div {
	top: 50%;
}

.mobile__menu::after {
	top: calc(100% - 4px);
}

.company__title {
	display: flex;
	gap: 12px;
	padding: 96px 0 32px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.30);
	font-size: 20px;
}

.company__about_text {
	display: flex;
	color: rgba(16, 31, 51, 0.80);
	margin-bottom: 64px;
}

.company__about_left {
	font-size: 20px;
	line-height: 1.7em;
	padding: 60px 36px 60px 0;
	border-right: 1px solid rgba(0, 0, 0, 0.30);
	border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}

.company__about_right {
	padding: 60px 0 60px 36px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}

.company__about_paragraph {
	font-size: 20px;
	line-height: 1.7em;
	margin-bottom: 16px;
}

.how-to-start__title {
	font-size: 20px;
	line-height: 1.5em;
	margin-bottom: 32px;
}

.how-to-start__list {
	color: #f5f6fb;
}

.how-to-start__item {
	display: flex;
	gap: 64px;
}

.pipeline {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.how-to-start__item_text {
	padding: 20px 32px;
    border-radius: 20px;
    background: rgba(41, 103, 246, 0.90);
    flex-grow: 1;
    margin-bottom: 20px;
}

.how-to-start__item:last-child .how-to-start__item_text:last-child {
	margin-bottom: 0;
}

.pipeline__line {
	width: 2px;
	background-color: rgba(41, 103, 246, 0.90);
	flex-grow: 1;
}

.pipeline__step {
	color: #101f33;
	font-size: 20px;
	width: 60px;
	height: 60px;
	border: 2px solid rgba(41, 103, 246, 0.90);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.how-to-start__item:first-child .pipeline__line:first-child {
	opacity: 0;
}

.how-to-start__item:last-child .pipeline__line:last-child {
	opacity: 0;
}

.how-to-start__item_title {
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 16px;
}

.how-to-start__item_description {
	color: rgba(255, 255, 255, 0.80);
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 300;
}

.advantages__list {
	display: flex;
	color: #000000;
	gap: 24px;
	margin-bottom: 32px;
	flex-direction: column;
}

.advantages__list__wrapper {
	display: flex;
	gap: 24px;
}

.advantages__item_wrapper {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.advantages__item {
	padding: 20px 32px;
	border-radius: 20px;
	color: #101f33;
	border: 2px solid rgba(41, 103, 246, 0.90);
	overflow: hidden;
	width: 100%;
}

.advantages__item__icon {
	width: 36px;
	height: 36px;
	margin-bottom: 16px;
}

.advantages__item__icon img {
	width: 100%;
	height: 100%;
}

.advantages__item_title {
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.5em;
}

.advantages__item_title span {
	opacity: 0.25;
}

.advantages__item_description {
	line-height: 1.5em;
	font-weight: 300;
}

.advantages__item_description p {
	margin-bottom: 8px;
}

.advantages__item_description li:not(:last-child) {
	margin-bottom: 4px;
}

.advantages__title {
	display: flex;
	gap: 12px;
	padding: 76px 0 32px;
	font-size: 20px;
}

.advantages__description {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 400;
	color: #101f33;
}

.form__control {
	display: block;
	margin-bottom: 20px;
}

.form__control_info {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7em;
}

.form__control_link {
	color: #2967F6;
	line-height: 1.7em;
}

.control__title {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 400;
	margin-bottom: 4px;
}

.form__input {
	height: 48px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	width: 100%;
	padding: 0px 16px;
	margin-bottom: 4px;
	font-family: inherit;
	font-size: 16px;
}

.form__input:last-child {
	margin-bottom: 0px;
}

.form__area {
	height: 84px;
	padding: 16px;
}

.input__error {
	font-size: 16px;
	font-weight: 400;
	color: rgb(255, 68, 51);
	display: none;
}

.input__error_active {
	display: block;
}

/* кастомный чекбокс */

.checkbox__wrapper {
	cursor: pointer;
}

.checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.checkbox__text {
	user-select: none;
	font-weight: 400;
}

.checkbox__text::before {
	content: "";
	display: inline-block;
	position: relative;
	top: 3px;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	margin-right: 4px;
}

.checkbox__wrapper:hover .checkbox__text::before {
	background-color: #2967f638;
}

.checkbox__wrapper .checkbox:focus~.checkbox__text::before {
	box-shadow: 0px 0px 0px 4px rgba(176, 176, 255, 0.3);
}

.checkbox:checked~.checkbox__text::before {
	background-image: url(../images/check.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: #2967f6af;
}

.header__registration_button {
	padding: 8px 20px;
	background-color: #3D75F7;
	color: #f5f6fb;
	font-size: 16px;
	border-radius: 36px;
	font-weight: 500;
}

.header__registration_button:hover {
	background-color: #2967F6;
	color: #f5f6fb;
}

.header__registration_button:focus {
	background-color: #2465fc;
	color: #f5f6fb;
}

.contacts__title {
	display: flex;
	gap: 12px;
	padding: 96px 0 32px;
	font-size: 20px;
}

.contacts__wrapper {
	display: flex;
	margin-bottom: 64px;
}

.contacts__list {
	flex-basis: 50%;
	padding: 0 12px;
}

.contacts__list:first-child {
	padding-left: 0px;
}

.contacts__list:last-child {
	/* text-align: right; */
}

.contacts__list:last-child img {
	align-self: end;
	padding-right: 0px;
}

.contact__title {
	margin-bottom: 24px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.30);
	font-size: 20px;
}

.contact__text_list {
	display: flex;
	flex-direction: column;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7em;
	gap: 12px;
}

.contact__text_item {
	margin-bottom: 20px;
}

.contact__warn {
	margin-top: 32px;
	line-height: 1.4rem;
}

.contact__warn span {
	font-weight: 400;
	color: #eb3b3b;
}

.contact__item_link {
	color: #3D75F7;
}

.contact__qr-code {
	max-width: 240px;
}

.footer {
	padding: 64px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.30);
}

.footer__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	line-height: 1.5em;
	font-weight: 400;
	flex-wrap: wrap;
}

.footer__logo {
	margin-right: 72px;
	max-height: 46px;
	min-width: 169px;
}

.footer__text {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.copy {
	display: flex;
	gap: 12px;
}

/* модальное окно */

.modal {
	position: fixed;
	z-index: 999;
	inset: 0;
	background-color: rgba(20, 20, 20, 0.5);
	overflow: auto;
	padding: 5vh 1vh;
	display: none;
}

.modal__title {
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 500;
	text-align: center;
	margin-bottom: 24px;
}

.modal_opened {
	display: flex;
	align-items: flex-start;
}

.modal__window {
	background-color: #f5f6fb;
	max-width: 600px;
	margin: 0 auto;
	padding: 60px 36px 24px;
	border-radius: 16px;
	position: relative;
}

.close__modal {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	color: #f5f6fb;
	width: 24px;
	height: 24px;
	padding: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-header__registration_button {
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.success-modal__img {
	max-width: 64px;
	display: flex;
	margin: 0 auto;
}

.close__modal::before,
.close__modal::after {
	position: absolute;
	margin: auto;
	content: '';
	width: 2px;
	height: 24px;
	background-color: #414145;
	border-radius: 2px;
}

.close__modal:hover {
	background-color: rgba(65, 65, 69, 0.1);
}

.close__modal::before {
	transform: rotate(45deg);
}

.close__modal::after {
	transform: rotate(-45deg);
}

@media (max-width: 900px) {
	.nav__links {
		font-size: 16px;
		gap: 32px;
	}

	.header__login_button {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.header__login {
		flex-flow: column wrap;
	}

	.advantages__list {
		flex-flow: column wrap;
	}

	.advantages__list__wrapper {
		flex-flow: column wrap;
	}

	.pipeline {
		display: none;
	}

	.pipeline__wrapper::after {
		display: none;
	}

	.pipeline__wrapper {
		flex-flow: column wrap;
		gap: 24px;
	}

	.mobile__header {
		display: block;
	}

	.nav__links {
		flex-direction: column;
		margin-bottom: 32px;
	}

	.desktop__header {
		display: none;
	}

	.banner__wrapper {
		padding: 160px 20px 60px;
	}

	.banner__title {
		font-size: 32px;
	}

	.company__title {
		font-size: 16px;
	}

	.contacts__title {
		font-size: 16px;
	}

	.advantages__title {
		font-size: 16px;
	}

	.how-to-start__item_title {
		font-size: 16px;
		line-height: 1.5em;
		margin-bottom: 12px;
	}

	.how-to-start__item_text {
		font-size: 14px;
	}

	.company__about_text {
		flex-direction: column;
	}

	.company__about_left {
		padding: 64px 0;
		border: 0;
		font-size: 20px;
		line-height: 1.7em;
	}

	.company__about_right {
		padding: 0;
		border: 0;
	}

	.company__about_paragraph {
		font-size: 16px;
	}

	.how-to-start__title {
		text-align: center;
		line-height: 1.7em;
	}

	.how-to-start__list {
		flex-direction: column;
	}

	.feedback__wrapper {
		flex-direction: column;
	}

	.feedback__title {
		text-align: center;
		margin-top: 0;
		margin-bottom: 32px;
		font-size: 20px;
		line-height: 1.7em;
	}

	.form__control {
		margin-bottom: 16px;
		font-size: 16px;
	}

	.control__title {
		font-size: 16px;
	}

	.form__control_info {
		font-size: 16px;
	}

	.contact__text_item {
		font-size: 16px;
	}

	.contacts {
		text-align: center;
	}

	.contacts__wrapper {
		flex-direction: column;
		margin-bottom: 0;
	}

	.contacts__list {
		text-align: center;
	}
	
	.contacts__list {
		margin-bottom: 64px;
	}

	.contacts__list:first-child {
		margin-right: 0;
	}

	.contacts__list:last-child {
		text-align: center;
	}
	.contacts__list:last-child img {
		align-self: center;
	}

	.contacts__bank_name {
		font-size: 24px;
	}

	.contact__title {
		font-size: 16px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.footer {
		padding: 32px 0;
	}

	.footer__container {
		flex-direction: column;
		font-size: 16px;
	}

	.footer__logo {
		margin: 0;
		margin-bottom: 32px;
	}

	.copy {
		flex-direction: column;
		align-items: center;
		margin-bottom: 32px;
		text-align: center;
	}

	.footer__text {
		flex-direction: column;
		align-items: center;
		margin: 0;
	}

	.footer__links {
		text-align: center;
	}

	.modal__title {
		font-size: 24px;
	}
}

@media (max-width: 600px) {
	.development__img {
		display: none;
	}
}

@media (max-width: 425px) {
	.banner__wrapper {
		padding: 120px 20px 0;
	}

	.banner__title {
		font-size: 28px;
		margin-bottom: 32px;
	}

	.development__item {
		padding: 0;
	}

	.development__title {
		font-size: 20px;
		padding: 0 20px;
	}

	.development__description {
		padding: 0 20px;
	}

	.item__wrapper_lightpurple,
	.item__wrapper_blue,
	.item__wrapper_purple,
	.item__wrapper_black {
		background-image: none;
	}

	.control__title {
		font-size: 16px;
	}

	.form__control_info {
		font-size: 16px;
	}

	.modal__window {
		padding: 60px 20px 24px;
	}

	.modal-form__control {
		font-size: 16px;
	}
}