/* .main-b2b {
	gap: 24px;
	margin-top: 24px;
} */
.main-b2b {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.main-b2b .page-title {
	margin: 12px 0 24px 0;
}

.main-b2b .page-title__title {
	font-size: 32px;
}

.b2b__column {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.b2b__left {
	max-width: 775px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.b2b__left-general {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.b2b__left-general p {
	margin: 0;
}


.b2b__left-general h2,
.b2b__left-starting h2 {
	font-size: 40px;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin: 0;
}

.b2b__left-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.b2b__left-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 0 0 calc(50% - 12px);
	gap: 16px;
}

.b2b__left-icon {
	width: 12px;
	height: 12px;
	background: #EF0022;
	flex-shrink: 0;
}

.b2b__left-starting {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.b2b__right {
	max-width: 549px;
	width: 100%;
	border-radius: 20px;
	border: 1.5px solid #E3E3E3;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	padding: 24px;
}

/* .b2b__right .h2 {
	font-size: 32px;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	letter-spacing: 0.1px;
	padding-bottom: 24px;
} */

/* .b2b__left-general .h2,
.b2b__left-starting .h2 {
	font-size: 40px;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin: 0;
}
.b2b__right h2 {
	font-size: 32px;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	letter-spacing: 0.1px;
	padding-bottom: 24px;
} */

.b2b__right h2,
.b2b__right .h2,
.b2b__left-general .h2,
.b2b__left-starting .h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1px;
}

@media (max-width: 992px) {
	.b2b__right {
		max-width: 100%;
		width: 350px;
	}
}

@media (width <=47.9988rem) {
	.main-b2b {
		/* gap: 16px; */
		padding-bottom: 40px;
	}

	.main-b2b .page-title__title {
		font-size: 20px;
	}

	.b2b__column {
		flex-direction: column;
		gap: 40px;
	}

	.b2b__left {
		gap: 40px;
	}

	.b2b__left-general {
		gap: 40px;
	}

	.b2b__left-mobiles {
		gap: 16px;
	}

	.b2b__right h2,
	.b2b__right .h2 {
		font-size: 20px;
		line-height: 24px;
		padding: 0;
	}

	.b2b__left-general .h2,
	.b2b__left-starting .h2,
	.b2b__left-general h2,
	.b2b__left-starting h2 {
		font-size: 16px;
		line-height: 20px;
	}

	.b2b__left-list {
		flex-direction: column;
		gap: 16px;
	}

	.b2b__left-item {
		display: flex;
		flex-direction: сolumn;
		align-items: center;
		flex: 1;
		gap: 10px;
	}

	.b2b__right {
		width: 100%;
		padding: 12px;
		border-radius: 12px;
	}
}

.b2b__form {
	transition: max-height 0.3s ease, opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 24px 16px;
}

.b2b__form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.b2b__form-group .text-danger {
	color: #EF0022;
	text-align: right;
}

.b2b__input {
	min-height: 56px;
	padding: 16px;
	border-radius: 16px;
	background: var(--color-gray-primary);
	font-weight: var(--font-weight-regular);
	color: var(--color-gray-label);
	font-size: 16px;
	line-height: 24px;
	cursor: pointer;
}

@media (max-width: 768px) {
	.b2b__input {
		min-height: 44px;
		height: 44px;
		padding: 13px 12px;
		font-size: 14px;
		border-radius: 12px;
	}
}

.b2b__input::placeholder {
	color: var(--color-gray-label);
	font-weight: var(--font-weight-regular);
}

.b2b__input:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.b2b__textarea {
	min-height: 104px;
	padding: 16px;
	border-radius: 16px;
	background: var(--color-gray-primary);
	border: 1.5px solid var(--color-gray-light);
	font-family: inherit;
	font-size: 16px;
	resize: none;
	width: 100%;
}

.b2b__textarea::placeholder {
	color: var(--color-gray-label);
}

.b2b__textarea:focus {
	outline: none;
}

.b2b__btn {
	height: 56px;
}