.contacts {
	display: flex;
	gap: 12px;
}

.contacts .item__left {
	flex: 1;
}

.contacts .item__right {
	width: 520px;
	max-width: 100%;
}

.contacts .item__right,
.contacts .item__left {
	padding: 20px;
	border-radius: 8px;
	background: var(--white, rgba(255, 255, 255, 1));
}

.contacts h2 {
	color: var(--black, rgba(25, 35, 58, 1));
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 24px;
}

.contacts .item__right .item__contact-row span {
	font-size: 15px;
	font-weight: 500;
}

.contacts .item__left .about__shops {
	display: flex;
	gap: 28px 20px;
	flex-flow: row wrap;
}

.contacts .item__left .about__shops .item {
	width: calc(50% - 10px);
}

.contacts .item__left .about__shops .item__title {
	margin-bottom: 12px;
}

.contacts .item__right .about__shops {
	margin-bottom: 28px;
}

.contacts .item__right iframe {
	border-radius: 8px;
}

.footer__socials-icon {
	background: var(--bg, rgba(243, 246, 253, 1));
	border-radius: 50%;
}

@media (max-width: 991px) {
	.contacts .item__right {
		width: 100%;
	}

	.contacts .item__left .about__shops {
		flex-direction: column;
	}

	.contacts .item__left .about__shops .item {
		width: 100%;
	}
}