.contacts{
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}
.contacts__item{
	position: relative;
	border-top: 8px solid #666;
}
.contacts__item__address{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 30%;
	max-height: max-content;
	background: #fff;
	min-height: 300px;
	padding: 60px;
	margin: auto;
	z-index: 9;
	max-width: 460px;
}
.contacts__item__title {
	font-size: 28px;
	line-height: 1.17;
	font-weight: 600;
	margin-bottom: 30px;
}
.contacts__item__address a,
.contacts__item__address p {
	color: rgb(34, 46, 71);
	font-size: 18px;
	line-height: 1.55;
	font-weight: 100;
	margin: 0;
	text-decoration: none;
	display: block;
}
.contacts__item iframe{
	filter: grayscale(1);
}
.contacts__item__social {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}
@media (max-width: 767px) {
	.contacts__item__address {
		position: static;
		max-width: 100%;
		padding: 45px;
	}
	.contacts__item iframe{
		height: 300px;
	}
}