/* Consultation */
.consultation-section {
	background-color: var(--accent-color);
	padding-top: var(--block-space);
	padding-bottom: var(--block-space);
}

.consultation {

}

.consultation__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}

.consultation__header {
	flex: 0 0 auto;
	width: 50%;
	max-width: 608px;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
}

.consultation__header h2 {
  font-size: 50px;
  line-height: 60px;
	margin-bottom: 20px;
}

.consultation__header p {
	font-size: 18px;
	line-height: 1.44;
	font-weight: 500;
	margin: 0;
}

.consultation__contacts {
	padding-top: 40px;
	margin-top: 40px;
	position: relative;
}

.consultation__contacts:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 100vw;
	border-top: 1px solid var(--line-color);
}

.consultation__contacts:after {
	content: '';
	position: absolute;
	right: 0;
	top: -8px;
	width: 16px;
	height: 16px;
	background: var(--line-color);
	border-radius: 50%;
}

.consultation__contacts .h4 {
	font-size: 18px;
	line-height: 1.44;
	font-weight: 500;
	letter-spacing: 0;
	margin-bottom: 16px;
}

.consultation__contact {
	font-size: 26px;
	line-height: 36px;
	margin-bottom: 16px;
}

.consultation__contact:last-child {
	margin-bottom: 0;
}

.consultation__contact a {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.consultation__contact-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.consultation__contact-icon .icon {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.consultation__contact-text {

}

.consultation__content {
	flex: 0 0 auto;
	width: 50%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	padding-top: 10px;
}

@media (max-width: 1199.98px) {
	.consultation__header h2 {
    font-size: 30px;
    line-height: 40px;
  }

	.consultation__header p,
	.consultation__contacts .h4 {
		font-size: 16px;
		line-height: 24px;
	}

	.consultation__contacts {
		padding-top: 30px;
		margin-top: 30px;
	}

	.consultation__contact {
		font-size: 22px;
		line-height: 28px;
	}
}

@media (max-width: 991.98px) {
	.consultation__header {
		width: 100%;
		max-width: none;
		margin-bottom: 40px;
	}

	.consultation__content {
		width: 100%;
	}
}
/* ! Consultation */