.contact_page {
	position: relative;
	display: flex;
	gap: 0;
	align-items: stretch;
	height: 800px;
}

.contact_page.sidebar-open::before {
	left: 550px;
}

.contact_sidebar_toggle {
	position: absolute;
	left: 0;
	top: 20px;
	z-index: 41;
	cursor: pointer;
	transition: left 0.3s ease;
}

.contact_page.sidebar-open .contact_sidebar_toggle {
	left: 550px;
}



.sidebar_toggle_btn {
	background: #2b65ac;
	border: 0;
	border-radius: 0 65px 65px 0;
	width: 81px;
	height: 73px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.sidebar_toggle_btn:hover {
	background: #1e4a7a;
}

.sidebar_arrow {
	width: 32px;
	height: 32px;
	color: #fff;
	transition: transform 0.3s;
	transform: rotate(180deg);
}

.contact_page.sidebar-open .sidebar_arrow {
	transform: rotate(0deg);
}

.contact_sidebar {
	position: absolute;
	left: 0;
	top: 0;
	width: 550px;
	height: 100%;
	overflow-y: auto;
	padding: 0;
	background: #fff;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 40;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.contact_sidebar.open {
	transform: translateX(0);
}

.contact_sidebar::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.contact_map {
	flex: 1;
	min-width: 0;
	width: 100%;
}

#contact_map {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.contact_location {
	cursor: pointer;
	padding: 18px 26px 16px;
	margin-bottom: 0;
	background: #fff;
	border-bottom: 1px solid #f5f5f7;
	transition: background 0.25s ease;
	color: #1f3044;
}

.contact_location:hover:not(.active) {
	background: #f5f5f7;
}

.contact_location.active {
	background: #2E60AA;
	color: #fff;
}

.contact_location_name {
	margin: 0 0 8px;
	font: normal 500 28px/30px Arimo, Arial, sans-serif;
	letter-spacing: -0.28px;
	text-align: left;
}

.contact_location_text {
	margin: 0;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: -0.18px;
	text-align: left;
}

.contact_location_address {
	margin-bottom: 2px;
}

.contact_location_phone {
	margin: 6px 0 2px;
	font-weight: 600;
}

.contact_location_link {
	color: inherit;
	text-decoration: underline;
}

.contact_linkedin {
	display: inline-block;
	margin-top: 8px;
	color: #1F3044;
}

.contact_linkedin .svg_soc_in {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.contact_subway_toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	padding-top: 8px;
	border-top: 1px solid #8b94a3;
	cursor: pointer;
	color: inherit;
}

.contact_location.active .contact_subway_toggle {
	border-top-color: rgba(255, 255, 255, 0.65);
}

.contact_subway_left {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.contact_subway_label {
	font-size: 16px;
}

.svg_subway_icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.contact_subway_plus {
	font-size: 30px;
	line-height: 1;
	font-weight: 300;
}

.contact_subway_list {
	display: none;
	margin-top: 8px;
	padding-bottom: 4px;
}

.contact_location.subway-open .contact_subway_list {
	display: block;
}

.contact_subway_row {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	column-gap: 16px;
	align-items: center;
	margin-bottom: 6px;
}

.contact_subway_lines {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 4px;
	white-space: nowrap;
	min-height: 22px;
	justify-self: end;
}

.contact_subway_line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 11px;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background: #1f3044;
}

.contact_subway_line.is-blue,
.contact_subway_line.is-dark-blue {
	background: #0f1179;
}

.contact_subway_line.is-yellow,
.contact_subway_line.is-brown {
	background: #78522e;
}

.contact_subway_line.is-green {
	background: #32966a;
}

.contact_subway_line.is-red {
	background: #c73d35;
}

.contact_subway_line.is-orange {
	background: #c7672d;
}

.contact_subway_line.is-purple {
	background: #7e57c2;
}

.contact_subway_line.is-grey,
.contact_subway_line.is-gray {
	background: #7f8c8d;
}

.contact_subway_line.is-black {
	background: #111;
}

.contact_subway_line.is-white {
	background: #fff;
	color: #1f3044;
	border: 1px solid #d9dfe8;
}

.contact_subway_desc {
	font-size: 13px;
	line-height: 1.35;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	color: inherit;
}

.contact_subway_desc.is-center {
	align-self: center;
}

.contact_subway_desc.is-start {
	align-self: start;
}

.contact_subway_desc_line {
	margin: 0;
	padding: 0;
}

.contact_map_label {
	position: absolute;
	min-width: 141px;
	width: max-content;
	height: 52px;
	padding: 0 30px;
	box-sizing: border-box;
	border-radius: 31px;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transform: translate(-50%, calc(-100% - 58px));
	pointer-events: none;
	z-index: 4;
}

.contact_map_label_name {
	font-family: Arimo, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	color: #1d2b53;
	white-space: nowrap;
}

.contact_map_label_info {
    width: 20px;
    height: 20px;
    border: 2px solid #2B65AC;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #2b65ac;
}

@media (max-width: 1024px) {
	.contact_page {
		height: 500px;
	}

	.contact_sidebar {
		width: 70%;
	}

	.contact_page.sidebar-open .contact_sidebar_toggle {
		left: 70%;
	}

	.sidebar_toggle_btn {
		width: 48px;
		height: 43px;
		border-radius: 0 28px 28px 0;
	}

	.contact_page::before {
		width: 18px;
	}

	.contact_page.sidebar-open::before {
		left: 70%;
	}

	.sidebar_arrow {
		width: 22px;
		height: 22px;
	}
}


.top_section:has(+ .contact_section) {
	background:#f5f5f7;
}

.contact_location.active .contact_linkedin {
	color: #fff;
}

.contact_sidebar::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}
