.image-maps {
	display: grid;
	justify-items: center;
	justify-content: center;
	text-align: center;
	max-width: 60rem;
	margin: 0 auto;
	padding: 3em 30px 7em;
	gap: 2em;
}

.image-maps-holder .image-maps-images .image-map-image.active {
    opacity: 1;
    pointer-events: all;
}

.image-maps-holder {
	display: grid;
	gap: 3em;
	width: 100%;
}

.image-maps-holder .image-maps-images {
	position: relative;
	width: 100%;
	height: 17.8em;
}

.image-maps-holder .image-maps-images .image-map-image {
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	height: 100%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.image-maps-holder .image-maps-images .image-map-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.image-maps-holder .image-maps-links {
	display: flex;
	flex-direction: column;
	gap: 2em;
	align-items: center;
	justify-content: center;
}

.image-maps-holder .image-maps-links .image-map-link {
	font-weight: 700;
	position: relative;
	cursor: pointer;
	font-size: 1.2em;
}

.image-maps-holder .image-maps-links .image-map-link:after {
	width: 0;
	background: #000;
	position: absolute;
	content: "";
	bottom: -3px;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 2px;
	transition: all 0.3s ease-in-out;
}

.image-maps-holder .image-maps-links .image-map-link:hover:after,
.image-maps-holder .image-maps-links .image-map-link.active:after {
	width: 100%;
}

.hoverImageMap {
    position: absolute;
    z-index: 1;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0000002b;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    opacity: 0;
}

.hoverImageMap:hover {
    opacity: 1;
}

.hoverImageMap span {
    background: black;
    color: #fff;
	display: inline-block;
    font-size: 0.9rem;
    border: 1px solid black;
    border-radius: 25px;
    padding: 0.71em 2.331em;
	transition: 0.3s all ease-in-out;
}

.hoverImageMap span:hover {
	background: #fff;
    color: black;
	border-color: #fff;
}

@media screen and (min-width: 650px) {
	.image-maps-holder .image-maps-images {
		height: 20.8em;
	}
}

@media screen and (min-width: 960px) {
	.image-maps-holder .image-maps-links {
		flex-direction: row;
		gap: 4em;
	}
	.image-maps-holder .image-maps-images {
		height: 25.8em;
	}
}
