.g_map {
	width: 100%;
	height: 450px;
}

.contacts-container {
	display: flex;
	width: 100%;
	justify-content: space-around;
	flex-wrap: wrap;
}

.contact-element {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
	height: 120px;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 0 1.2rem;
	white-space: nowrap;
}

.contact-element img {
	position: absolute;
	height: 120px;
}

.contact-element b {
	z-index: 1;
}

@media (min-width:1200px) {
	.contacts-container {
		width: 105%;
	}
}

@media (min-width:1440px) {
	.contacts-container {
		width: 115%;
	}
}

@media (min-width:1700px) {
	.contacts-container {
		width: 120%;
	}
}
