.contact-page .callback-form{
    margin:115px 0 100px 0;
}

.contact-page .contacts__title{
    color:var(--darkblue);
    text-transform:uppercase;
    margin:0;
	font-size:92px;
}
.contact-page .contacts__tabs-map{
    height:100%;
    width:100%;
    background:var(--lightblue);
    border-radius:30px;
}
.contact-page .contacts__tab-content{
    max-width:100%;
    width:100%;
    height:100%;
    padding:15px;
}
.contact-page .contacts__tab-content iframe{
    width:100%;
    height:100%;
    border-radius:20px;
}
.contact-page .contacts__tab-content.active-tab-content,
.contact-page .contacts__tab-content.active-tab-map{
    display:block;
}
.contact-page .contacts__tab-content{
    display:none;
}
.contact-page .contacts__tabs-wrapper{
    display: grid;
    grid-template-columns: 55% auto;
    gap:20px;
}
.contact-page .contacts__inner{
    position:relative;
}
.contact-page .contacts__tabs-tabs{
    display:flex;
    flex-direction:column;
    gap:16px;
}
.contact-page .contacts__tab-city{
    padding:25px;
    background:#fff;
    border-radius:20px;
    cursor:pointer;
	position: relative;
}
.contacts__tabs-tabs .contacts__tab-city-bridge {
	display: none;
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content .contacts__tab-city-bridge {
	display: block;
	position: absolute;
	right: 100%;
	top: 0;
	background:var(--lightblue);
	height: 100%;
	width: 60px;
	border-top-left-radius: 30px;
	z-index: -1;
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content .contacts__tab-city-bridge:before,
.contacts__tabs-tabs .contacts__tab-city.active-tab-content .contacts__tab-city-bridge:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: radial-gradient(circle at 100% 100%, rgba(204, 0, 0, 0) 29px, var(--lightblue) 30px);
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="1"] .contacts__tab-city-bridge:before {
	right: 100%;
	top: 114px;
	transform: rotate(180deg);
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="1"] .contacts__tab-city-bridge:after {
	right: -10px;
	top: 100%;
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="2"] .contacts__tab-city-bridge:before {
	right: -10px;
	top: -30px;
	transform: rotate(-90deg);
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="2"] .contacts__tab-city-bridge:after {
	right: -10px;
	top: 100%;
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="3"] .contacts__tab-city-bridge:before {
	right: -10px;
	top: -30px;
	transform: rotate(-90deg);
}
.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="3"] .contacts__tab-city-bridge:after {
	display: none;
}
.contact-page .contacts__tab-city h3{
    font-size:24px;
    font-weight:400;
    color:var(--darkblue);
}
.contact-page .contacts__tab-city p{
    font-size:20px;
    margin-top:16px;
}
.contact-page .contacts__tab-city p strong{
    font-weight:600;
    margin-bottom:9px;
    display:inline-block;
}
.contact-page .contacts__tab-city > *{
    margin:0;
}
.contacts__tab-city.active-tab-content{
    background:var(--lightblue);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.contacts__tabs-header{
    display:flex;
    flex-direction:column;
}
.contacts__tab-tabs-mobile {
	display: none;
}
@media screen and (max-width: 1180px) {
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="1"] .contacts__tab-city-bridge:before {
		top: 55px;
	}
}
@media screen and (max-width: 1030px) {
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content .contacts__tab-city-bridge {
		right: 0;
		top: auto;
		bottom: 100%;
		height: 50px;
		width: 100%;
		border-top-left-radius: 0;
	}
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="1"] .contacts__tab-city-bridge:before {
		display: none;
	}
	.contacts__tab-city.active-tab-content {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: 20px;
	}
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="1"] .contacts__tab-city-bridge:after {
		right: auto;
		top: auto;
		left: 100%;
		bottom: -10px;
	}
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="2"] .contacts__tab-city-bridge:before {
		right: auto;
		top: auto;
		left: 100%;
		bottom: -10px;
		transform: rotate(0deg);
	}
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="2"] .contacts__tab-city-bridge:after {
		right: 100%;
		top: auto;
		left: auto;
		bottom: -10px;
		transform: rotate(90deg);
	}
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content[data-content="3"] .contacts__tab-city-bridge:before {
		right: 100%;
		top: auto;
		bottom: -10px;
		transform: rotate(90deg);
	}
}

@media screen and (max-width: 768px) {
	.contacts__tabs-tabs .contacts__tab-city.active-tab-content .contacts__tab-city-bridge {
		display: none;
	}
	.contacts__tab-city.active-tab-content {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 20px;
	}
}