.container {
	max-width: 720px;
   	margin: 0 auto;
}

img {
	width: 100%;
        height: 57.67%;
}

.map-container {
	text-align: center;
	position: relative;
	display: inline-block;
}

.map-container i {
	position: absolute;
	display: inline-block;
	padding-top: 5%;
	width: 5%;
	height: 0;
        margin: 0 auto;
        pointer-events: none;
}

.map-container i::before {
	content: "";
	position: absolute;
        z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-image: url('../img/map-marker-icon.png');
	background-size: contain;
        transform: translate(0, 0);
}

.map-container i::after {
	content: "";
	position: absolute;
        z-index: 0;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: rgb(0, 0, 0);
	background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%);
        opacity: 0.5;
        transform: scaleY(0.5) scaleX(1);
}

.map-container i:not(.active)::before {
	animation-name: before_animation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

.map-container i:not(.active)::after {
	animation-name: after_animation;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

#icon-na {
	top: 20%;
	left: 22%;
}

#icon-af {
	top: 45%;
	left: 51%;
}

#icon-eu {
	top: 15%;
	left: 51%;
}

#icon-oc {
	top: 63%;
	left: 82%;
}

@keyframes before_animation {
  	0%   {transform: translate(0, 0);}
  	50%  {transform: translate(0, -15%);}
  	100% {transform: translate(0, 0);}
}

@keyframes after_animation {
  	0%   {transform: scaleY(0.5) scaleX(1);}
 	50%  {transform: scaleY(0.375) scaleX(0.75);}
  	100% {transform: scaleY(0.5) scaleX(1);}
}
