/*  */
.wrapper__servises-content .wrapper__widget {
	padding: 0 !important;
}
/*  */

.maps-composite {
	margin-bottom: 80px;
}

.map-composite {
	--map-height: 400px;
	--map-row-height: var(--map-height);
	--map-box-radius: 10px;
	--map-detail-text-color: #fff;
	--map-detail-background: #240646;

	@media screen and (max-width: 768px) {
		--map-row-height: auto;
	}
}

.map-composite__row {
	padding: 8px 16px;
	align-items: stretch !important;
}
.map-composite__column {
	order: 1;
	padding: 0 8px;
}
.map-composite__column:first-child {
	@media screen and (max-width: 1230px) {
		display: none !important;
	}
}
.map-composite:nth-child(even) .map-composite__column:first-child {
	order: 3;

	@media screen and (max-width: 768px) {
		order: 1;
	}
}
.map-composite:nth-child(even) .map-composite__column:nth-child(2) {
	order: 2;

	@media screen and (max-width: 768px) {
		order: 1;
	}
}

.map-composite__image {
	height: 100%;
	border-radius: var(--map-box-radius);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.map-composite__details {
	display: flex;
	row-gap: 20px;
	flex-direction: column;
	padding: 32px;
	height: 100%;
	border-radius: var(--map-box-radius);
	background-color: var(--map-detail-background);

	@media screen and (max-width: 768px) {
		padding: 16px;
	}
}
.map-composite__detail {
	display: flex;
	row-gap: 10px;
	flex-direction: column;
	max-width: 410px;
}
.map-composite__detail-title {
	text-transform: uppercase;
	line-height: 1.2;
	font-weight: 700;
	color: var(--map-detail-text-color);
	font-size: calc( 16px + 10 * ( (100vw - 375px) / 1545 ));
}
.map-composite__detail-info, .map-composite__detail-info a {
	line-height: 1.2;
	font-weight: 400;
	color: var(--map-detail-text-color);
	font-size: calc( 14px + 2 * ( (100vw - 375px) / 1545 ));
}

.map-composite-wrapper {
	height: 100%;
	min-height: var(--map-height);
	overflow: hidden;
	border-radius: var(--map-box-radius);
}