.contacts {
	margin-bottom: 100px;
	display: flex;
	align-items: stretch;
	gap: 0 46px;
}

.contacts > div {
	flex: 1;
	border-radius: 40px;
	background: linear-gradient(90.00deg, rgba(255, 255, 255, 1),rgba(248, 248, 248, 0) 100%);
	padding: 40px 60px;
}

.contacts__right {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contacts__right-row-title {
	font-weight: 700;
	margin-bottom: 20px;
}

.contacts__right-row-content {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
}

.contacts__right-row-content a {
	font-weight: 500;
	display: flex;
	align-items: center;
}

.contacts__right-row-content a.contacts-phone {
	font-size: 20px;
	font-weight: 700;
	gap: 0 14px;
}

.contacts__mob {
	display: none;
}

.contact-phone-wrap {
	display: flex;
	align-items: center;
	gap: 0 10px;
}

.contact-phone-wrap a{
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	.contacts__mob {
		display: flex;
	}

	.contacts:not(.contacts__mob) > .contacts__form {
		display: none;
	}
}

@media (max-width: 650px) {
	.contacts > .contacts__right {
		padding: 15px;
		background: none;
	}

	.contacts {
		margin-bottom: 42px;
	}
	
	.contacts__right-row:last-child {
		display: none;
	}
}