.contact-info__inner {
	display: flex;
	align-items: stretch;
	gap: 40px;
}

.contact-info__text {
	display: flex;
	flex: 0 0 255px;
	flex-direction: column;
	gap: 40px;
}

.contact-info__title {
	margin: 0;
	font-weight: 300;
	font-size: 36px;
	line-height: normal;
	text-transform: uppercase;
	color: #e7e7e7;
}

.contact-info__group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-info__group-title {
	margin: 0;
	font-weight: 500;
	font-size: 14px;
	line-height: normal;
	text-transform: uppercase;
	color: #e7e7e7;
}

.contact-info__row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-info__icon {
	display: flex;
	flex: 0 0 20px;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #f2ceb5;
}

.contact-info__icon--small {
	flex-basis: 16px;
	width: 16px;
	height: 16px;
}

.contact-info__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.contact-info__value {
	margin: 0;
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	color: #e7e7e7;
}

.contact-info__link {
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-info__link:hover {
	color: #f2ceb5;
}

.contact-info__divider {
	display: block;
	width: 100%;
	height: 0;
	border-top: 0.3px solid rgba(231, 231, 231, 0.5);
}

/* Yandex rating card. */
.contact-info__rating {
	--contact-star-on: #f2c94c;
	--contact-star-off: rgba(231, 231, 231, 0.25);

	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 20px;
	border-radius: 10px;
	background: #252525;
	box-shadow: 0 0 5px rgba(242, 206, 181, 0.2);
}

.contact-info__rating {
	width: 255px;
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(242, 206, 181, 0.2);
}

.contact-info__rating iframe {
	transform: scale(1.7);
	-webkit-transform: scale(1.7);
	-moz-transform: scale(1.7);
	-ms-transform: scale(1.7);
	-o-transform: scale(1.7);
}

/* Map. */
.contact-info__map {
	flex: 1 1 auto;
	min-height: 464px;
	border-radius: 10px;
	overflow: hidden;
	background: #222222;
}

.contact-info__map-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (min-width: 1024px) and (max-width: 1439px) {
	.contact-info__map {
		min-height: 459px;
	}
}

@media (max-width: 1023px) {

	.contact-info__rating {
		width: 100%;
		max-width: 255px;
	}

	.contact-info__inner {
		flex-direction: column;
		gap: 30px;
	}

	.contact-info__text {
		flex: 0 0 auto;
		width: 100%;
		gap: 30px;
	}

	.contact-info__title {
		font-size: 24px;
	}

	.contact-info__rating {
		margin-top: 0;
	}

	.contact-info__map {
		width: 100%;
		min-height: 0;
		aspect-ratio: 335 / 448;
	}
}