.contact-form {
	padding: 80px 0;
	background-color: var(--grey-50);
}
.contact-form .container {
	max-width: 1280px;
}
.contact-form .container > .heading {
	text-align: center;
	margin-bottom: 64px;
}
.contact-form-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	/* gap: 42px; */
	border-radius: 48px;
	overflow: hidden;
}

.contact-form__left {
	background-color: var(--white);
	padding: 48px;
	/* border-radius: 48px; */
	width: 66%;
}

.contact-form .heading_form {
	font-size: 32px;
	line-height: 40px;
	margin: 0;
	margin-bottom: 24px;
	margin-top: 12px;
}
.contact-form__content {
	margin-bottom: 42px;
}
.contact-form__content p {
	font-size: 18px;
	line-height: 30px;
}

.contact-form__right {
	background-color: rgba(237, 28, 36, 0.05);
	background-color: var(--white);
	width: 34%;
	display: flex;
	flex-direction: column;
	padding: 48px 42px;
	/* border-radius: 48px; */
	border-left: 1px solid var(--grey-300);
}
.contact-form__right__items {
	flex: 1;
}
.contact-form__right__header {
	color: var(--grey-900);
	font-size: 20px;
	line-height: 24px;
	margin: 0;
	font-weight: 700;
}

.contact-form__right__items-header {
	font-size: 20px;
	line-height: 24px;
	margin: 0;
	font-weight: 700;
	color: var(--grey-900);
	margin-bottom: 24px;
	display: block;
}

.contact-form__right__items__item {
	margin-bottom: 12px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0;
	gap: 8px;
}
.contact-form__right__items__item a {
	color: var(--grey-500);
	display: inline-block;
	transition: color var(--transition);
}
.contact-form__right__items__item a:hover{
	color: var(--grey-900);
}
.contact-form__right__items__item a::before {
	content: unset !important;
}
.contact-form__right__item__icon{
	display: flex;
}
@media (max-width: 992px) {
	.contact-form .form-row {
		flex-direction: column;
		display: flex;
		gap: 16px;
	}
	.contact-form__left {
		padding: 32px;
	}
	.contact-form__right {
		padding: 32px;
	}
	.contact-form__content {
		margin-bottom: 32px;
	}
	.contact-form .heading_form {
		font-size: 28px;
		line-height: 36px;
	}
	.contact-form__content p {
		font-size: 16px;
		line-height: 26px;
	}
	.contact-form__left {
		width: 60%;
	}
	.contact-form__right {
		width: 40%;
	}
}

@media (max-width: 768px) {
	.contact-form-wrapper {
		flex-direction: column;
	}
	.contact-form__left {
		width: 100%;
	}
	.contact-form__right {
		width: 100%;
		border-top: 2px solid var(--grey-300);
	}
	.contact-form__right__items-header:not(:first-of-type) {
		margin-top: 28px;
	}
	.contact-form__right__header {
		margin-top: 28px;
	}
	.contact-form__left {
		padding: 28px 28px 24px 28px;
	}
	.contact-form__right {
		padding: 28px;
	}
	.contact-form__right__items-header {
		margin-bottom: 16px;
		margin-top: 12px;
	}
	.contact-form__right__desc p{
	}
}
