.contacts-info-section {
	padding: 40px 0 48px;
}

.contacts-info-section .container {
	max-width: 1200px;
}

.sh-contacts-info-grid {
	display: grid;
	grid-template-columns: 282px minmax(0, 894px);
	justify-content: space-between;
	gap: 24px;
	align-items: start;
}

.sh-contacts-meta h2 {
	margin: 0 0 32px;
	font-family: 'InterMedium', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 30px;
	text-transform: uppercase;
	color: #0E0F11;
}

.sh-contacts-meta-city {
	margin-bottom: 12px;
	font-size: 10px;
	line-height: 12px;
	color: #383B47;
	text-transform: uppercase;
}

.sh-contacts-meta-address {
	margin-bottom: 8px;
	font-family: 'InterMedium', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #0E0F11;
	text-transform: uppercase;
}

.sh-contacts-meta-schedule {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 18px;
	color: #717883;
}

.sh-contacts-meta-link,
.sh-contacts-meta-phone {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 20px;
	color: #0E0F11;
	text-decoration: none;
}

.sh-contacts-meta-link:hover {
	color: #383B47;
}

.sh-contacts-meta-caption {
	margin: 28px 0 12px;
	font-size: 10px;
	line-height: 12px;
	color: #383B47;
	text-transform: uppercase;
}

.sh-contacts-meta-legal {
	font-family: 'InterMedium', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #0E0F11;
	text-transform: uppercase;
}

.sh-contacts-form-card {
	background: #FFFFFF;
	border-radius: 1px;
	width: 100%;
	max-width: 894px;
	min-height: 352px;
	padding: 32px 48px 32px 54px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.sh-contacts-form-card h3 {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
}

.sh-contacts-form-description {
	margin: 0;
	max-width: 792px;
	font-size: 14px;
	line-height: 18px;
	color: #383B47;
}

.sh-contacts-form-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 384px));
	justify-content: space-between;
	gap: 24px;
	padding-top: 30px;
	align-items: stretch;
	flex: 1 1 auto;
}

.sh-contacts-form-column {
	display: grid;
	gap: 12px;
	align-content: start;
}

.contacts-form {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.contacts-form input:not(.sh-contacts-consent-input),
.contacts-form textarea {
	display: block;
	width: 100%;
	border: 1px solid #A6A8B2;
	border-radius: 1px;
	padding: 11px 15px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #2B2C32;
	background: #FFFFFF;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
	border-color: #383B47;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
	color: #A6A8B2;
}

.contacts-form textarea {
	min-height: 100px;
	height: 100%;
	resize: none;
}

.sh-contacts-form-actions {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-top: 20px;
	margin-top: auto;
}

.sh-contacts-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 381px;
	cursor: pointer;
	margin: 0;
	position: relative;
}

.sh-contacts-consent-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
	margin: 0;
}

.sh-contacts-consent-box {
	width: 20px;
	height: 20px;
	border: 1px solid #E0E2E8;
	background: #FFFFFF;
	margin-top: 0;
	margin-right: 0;
	flex: 0 0 auto;
	position: relative;
	box-sizing: border-box;
}

.sh-contacts-consent-input:checked + .sh-contacts-consent-box {
	border-color: #383B47;
	background-image: url("/images/checkbox.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 70% 70%;
}

.sh-contacts-consent-text {
	display: block;
	max-width: 348px;
	font-size: 12px;
	line-height: 16px;
	color: #2B2C32;
	margin-top: 1px;
}

.sh-contacts-consent-link {
	color: inherit;
	text-decoration: underline;
}

.sh-contacts-submit {
	width: 228px;
	height: 48px;
	flex: 0 0 auto;
}

.sh-contacts-submit[disabled] {
	opacity: 0.7;
	cursor: progress;
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
	.contacts-info-section .container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.sh-contacts-info-grid {
		grid-template-columns: 1fr;
	}

	.sh-contacts-form-card {
		padding: 32px;
		max-width: none;
	}
}

@media screen and (max-width: 767px) {
	.contacts-info-section {
		padding: 0;
	}

	.contacts-info-section .container {
		max-width: none;
		padding-left: 0;
		padding-right: 0;
	}

	.sh-contacts-info-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.sh-contacts-meta {
		padding: 40px 16px 38px;
	}

	.sh-contacts-meta h2 {
		margin-bottom: 32px;
		font-size: 18px;
		line-height: 24px;
	}

	.sh-contacts-meta-city,
	.sh-contacts-meta-caption {
		font-size: 10px;
		line-height: 12px;
	}

	.sh-contacts-meta-address,
	.sh-contacts-meta-legal {
		font-size: 14px;
		line-height: 20px;
	}

	.sh-contacts-meta-schedule {
		margin-bottom: 20px;
	}

	.sh-contacts-meta-link,
	.sh-contacts-meta-phone {
		margin-bottom: 12px;
		font-size: 16px;
		line-height: 20px;
	}

	.sh-contacts-form-card {
		max-width: none;
		min-height: 502px;
		padding: 32px 16px;
		border-radius: 0;
	}

	.sh-contacts-form-card h3 {
		margin-bottom: 16px;
		font-size: 16px;
		line-height: 22px;
	}

	.sh-contacts-form-description {
		max-width: 324px;
		font-size: 12px;
		line-height: 16px;
	}

	.sh-contacts-form-fields {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-top: 24px;
	}

	.sh-contacts-form-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		padding-top: 24px;
	}

	.sh-contacts-consent {
		max-width: 343px;
		gap: 12px;
	}

	.sh-contacts-consent-text {
		max-width: 311px;
		font-size: 11px;
		line-height: 14px;
	}

	.sh-contacts-submit {
		width: 100%;
	}
}
