.contacts-tabs{
	position: relative;
}
.contacts-tabs__link{
	border-radius: 100px;
	padding: 24px 30px;

	font-family: var(--font-family);
	font-weight: 700;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	border:none;
	background: #fff;
	color: #212529;
	margin-right: 10px;
}
.contacts-tabs__link:not(.is-active){
	cursor: pointer;
}
.contacts-tabs__link.is-active{
	background: #0067c0;
	color: #fff;
}
.contacts-tabs__links{
	margin-bottom: 24px;
	overflow-x: auto;
	max-width: 100%;
	white-space: nowrap;
}

.contacts-tabs__item:not(.is-active){
	display: none;
}

.contacts-tabs__item__branches{
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	max-width: 900px;
}

.contacts-tabs__item__branch{
	border-radius: 14px;
	padding: 24px 34px;
	width: 48%;
	box-sizing: border-box;
	background: #fff;
}
.contacts-tabs__item__branch__title{
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #212529;
	margin-bottom: 10px;
}

.contacts-tabs__item__branch__links{
	display: flex;
	align-items: center;
}
.contacts-tabs__item__branch__link{
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: -0.02em;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #1f87cc;
}

.contacts-tabs__item__branch__link:hover{
	color: #16b1de;
}
.contacts-tabs__item__branch__link_sep:not(:last-child){
	background-color: rgba(0, 0, 0, 0.2);
	width: 1px;
	height: 14px;
	margin: 0 10px;
}

@media (max-width: 1000px) {
	.contacts-tabs__item__branch{
		width: 100%;
	}
	.contacts-tabs__link {
		border-radius: 50px;
		padding: 10px;
		margin-right: 0;
		font-size: 13px;
	}
}