.contacts__list {
    grid: none/repeat(4, 1fr);
}
.contacts__name {
    line-height: 26px;
    margin-bottom: 20px;
	margin-left: -1px;
	margin-right: -1px;
}
.contacts__link a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.contacts__link a:hover {
    color: var(--primary-color-active);
    border-color: transparent;
}
.contacts__btn {
    display: inline-flex;
}
.contacts__wa {
	display: block;
	margin: 15px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
}
.contacts__wa-inner {
	display: inline-block;
	vertical-align: top;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
}
.contacts__wa a {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0px 0px 0px 0px;
	padding: 0px 12px 0px 12px;
	position: relative;
	height: 46px;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	background: #10c335;
	color: #fff;
}
.contacts__wa a:hover {
	text-decoration: none;
	border: none;
	background: color-mix(in srgb, #10c335, #fff 12%);
	color: #fff;
}
.contacts__wa a:before {
	content: "";
	display: block;
	margin: 0px 10px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	top: 0px;
	left: 0px;
	width: 24px;
	height: 24px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-image: url(../../uploads/icons/icon-modal-contacts-wa.svg);
	background-size: cover;
	z-index: 10;
}
@media screen and (min-width: 1576px) {
	.contacts__list {
		grid: unset;
		gap: 0;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		margin-left: -20px;
		margin-right: -20px;
	}
	.contacts__item {
		margin-left: 20px;
		margin-right: 20px;
	}
	.contacts__item.--address {
		max-width: 310px;
	}
	.contacts__item.--feedback {
		width: 211px;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 992px) {
    .contacts__list {
        grid: none/repeat(2, 1fr);
        gap: 30px 0;
    }
}
@media screen and (max-width: 767px) {
    .contacts__name {
        font-size: 18px;
        margin-bottom: 10px;
    }
	.contacts__wa a {
		font-size: 15px;
		line-height: 20px;
		padding: 0px 11px 0px 11px;
		height: 44px;
	}
}
@media screen and (max-width: 480px) {
    .contacts__list {
        grid: none/repeat(1, 1fr);
        gap: 15px 0;
    }
	.contacts__name {
		margin-bottom: 5px;
		margin-left: 0px;
		margin-right: 0px;
	}
	.contacts__btn {
		margin-top: 5px;
	}
	.contacts__wa {
		margin-top: 12px;
	}
}