.trade-inner {
	height: 340px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.trade__img {
	height: auto;
	border-radius: 10px;
	object-fit: cover;
}

.trade-info {
	background-color: var(--color-white);
	border-radius: 10px;
	padding: 45px;
	padding-top: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.trade-info-title {
	font-weight: 400;
	font-size: 46px;
	line-height: 1.2;
	text-transform: uppercase;
}

.trade-info-title span {
	color: var(--color-accent);
}

.trade-info-title .desk-hide {
	display: none;
}

.trade-form {
	margin-top: auto;
	max-width: 564px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px 10px;
	grid-auto-flow: row;
	grid-template-areas:
		'trade-form-input-phone trade-form-btn'
		'trade-form-checkbox trade-form-checkbox';
}

.trade-form-input-phone {
	grid-area: trade-form-input-phone;
}

.trade-form-btn {
	grid-area: trade-form-btn;
}

.trade-form-checkbox {
	grid-area: trade-form-checkbox;
}

.trade-form-input-phone {
	border: 1px solid var(--color-black);
	padding: 0 18px;
	border-radius: 33px;
}
.trade-form-input-phone::placeholder {
	color: rgba(40, 40, 40, 0.52);
}

.trade-form-btn {
	max-width: 100%;
	height: 50px;
}

.trade-form-checkbox .custom-checkbox-text {
	text-wrap: nowrap;
	color: rgba(40, 40, 40, 0.52);
}

.trade-form .form-input__check[type='checkbox'] + .custom-checkbox {
	background-color: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.trade-form .form-input__check[type='checkbox']:checked + .custom-checkbox {
	background-color: rgba(0, 0, 0, 0.1);
	border: none;
}

@media screen and (max-width: 1540px) {
	.trade-info-title {
		font-size: 36px;
		line-height: 1;
	}
	.trade-info-title .mob-hide {
		display: none;
	}
	.trade-info-title .desk-hide {
		display: block;
	}
	.trade-form-checkbox .custom-checkbox-text {
		text-wrap: wrap;
	}

	.trade-form-checkbox .custom-checkbox-text br {
		display: none;
	}

	.trade-info {
		padding: 20px;
	}
}

@media screen and (max-width: 1200px) {
	.trade-info-title {
		font-size: 28px;
		line-height: 1;
	}
	.trade-inner {
		height: 280px;
	}
	.trade-form {
		gap: 5px;
	}
}

@media screen and (max-width: 992px) {
	.trade-form {
		max-width: 100%;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr auto;
		grid-template-areas:
			'trade-form-input-phone'
			'trade-form-btn'
			'trade-form-checkbox';
	}
	.trade-info-title {
		font-size: 20px;
	}
	.trade-inner {
		height: 260px;
	}
}

@media screen and (max-width: 768px) {
	.trade-inner {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	.trade-info-title .desk-hide,
	.trade-info-title .mob-hide {
		display: none;
	}
	.trade-info-title {
		margin-bottom: 14px;
	}
}

@media screen and (max-width: 539px) {
	.trade-info-title .mob-hide {
		display: none;
	}
	.trade-info-title .desk-hide {
		display: block;
	}
}
