.contacts-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
	right: 0;
	left: 0;
	margin: auto auto;
	background: linear-gradient(259.9deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%);
	z-index: -1;
}

.contacts_btn {
	margin-bottom: 47px;
	margin-top: 60px;
}

.h2-title.text-white {
	color: #fff;
	margin-bottom: 60px;
}

.contacts__wrapp--left {
	width: 50%;
}

.contacts__wrapp {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.wrapp--left_top,
.wrapp--left_bottom {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contacts__wrapp--right {
	width: 650px;
	height: 424px;
}

.contacts__wrapp--right iframe {
	border-radius: 10px;
}

.contacts-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px 0px;
	padding-left: 25px;
	position: relative;
	margin-bottom: 30px;
	max-width: 350px;
	width: calc((100% - 80px) / 2);
}
.contacts-card .contacts-card__title {
	position: relative;
	color: #fff;
}

.contacts-card::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 20px;
	left: 0px;
	top: 5px;
	margin: auto auto;
	background-image: url('../img/icons/geolocate.svg');
	background-repeat: no-repeat;
	background-position: center;
}

.contacts-card.number-phone::before {
	width: 22px;
	height: 22px;
	top: 3px;
	background-image: url('../img/icons/phone.svg')
}

.contacts-card.work-clock::before {
	width: 22px;
	height: 22px;
	top: 3px;
	background-image: url('../img/icons/clock.svg')
}

.contacts-card.email::before {
	width: 22px;
	height: 22px;
	top: 3px;
	background-image: url('../img/icons/mail.svg')
}

.contacts-card .contacts-card__description {
	color: rgba(255, 255, 255, .8);
	width: 100%;
}

.contacts-card__description a {
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
	cursor: pointer;
}

.contacts-line {
	width: 100%;
	border: 1px solid rgba(255, 103, 21, 1);
	border-radius: 15px;
	margin-bottom: 30px;
	margin-top: 0px;
	opacity: .5;
}

.container.container-not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 30px auto;
	gap: 60px 0px;
	text-align: center;
}

.container-not-found .h2-title {
	margin-top: 75px;
}

.breadcrumbs_link-contacts {
	padding: 60px 0px 30px;
}

.contacts_social {
	display: flex;
	justify-content: flex-start;
	gap: 0 20px;
	margin-top: 20px;
}

@media (max-width: 1520px) {
	.contacts__wrapp--right {
		width: 100%;
	}

	.contacts__wrapp {
		flex-direction: column;
	}

	.contacts__wrapp--left {
		width: 100%;
	}

	.contacts_btn {
		width: 100%;
		height: 50px;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.contacts__wrapp--right {
		margin-bottom: 45px;
	}

	.contacts-card {
		margin: 0px 30px 30px 0px;
	}
}

@media (max-width: 620px) {
	.not-found-image {
		width: 100%;
	}

	.container-not-found {
		gap: 30px 0px;
	}

	.contacts-line {
		margin: 30px 0px;
	}

	.wrapp--left_top .contacts-card:not(:first-child)::before {
		content: none;
		/* Это скрывает псевдоэлемент */
	}

	.wrapp--left_top .contacts-card:not(:first-child) .contacts-card__title {
		display: none;

	}

	.wrapp--left_top .contacts-card:first-child::before {
		top: 0px;
	}

	.h2-title.text-white {
		margin: 30px 0px;
	}

	.contacts_social {
		display: none;
	}

	.wrapp--left_top,
	.wrapp--left_bottom {
		flex-direction: column;
	}
}

@media (max-width: 470px) {
	.not-found-image {
		width: 100%;
	}

	.container-not-found {
		gap: 30px 0px;
	}
}