.map {
	padding: 75px 0;
}

.map__container {
	display: block;
	margin: auto;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 1327px;
	height: 702px;
}

.map__marker {
	position: absolute;
}

.map__marker-line {
	position: relative;
}

.map__marker-label {
	position: absolute;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 700;
	height: 44px;
	padding: 8px 30px;
	text-align: center;
}

.manchester-london {
	left: 44.43%;
	top: 18%;
}

.manchester-london .map__marker-label {
	right: 100%;
	top: -113px;
}

.dublin {
	left: 35.6%;
	top: 27.6%;
}

.dublin .map__marker-label {
	right: 100%;
	top: -57px;
}

.toronto {
	left: 26.6%;
	top: 40.2%;
}

.toronto .map__marker-label {
	left: 100%;
	bottom: -17px;
}

.capetown {
	bottom: 14.8%;
	left: 46.3%;
}

.capetown .map__marker-label {
	right: 100%;
	bottom: -17px;
}

.capetown img {
	height: 1px;
}

.johannesburg {
	right: 38.2%;
	bottom: 14.2%;
}

.johannesburg .map__marker-label {
	left: 100%;
	bottom: -17px;
}

.johannesburg img {
	height: 67px;
}

@media (max-width: 1366px) {
	.map__container {
		width: 1200px;
		height: 633px;
	}
	
	.manchester-london {
		left: 44.2%;
		top: 15.7%;
	}
	
	.dublin {
		left: 34.7%;
		top: 26.1%;
	}
	
	.capetown {
		bottom: 14.5%;
		left: 45.4%;
	}
	
	.johannesburg {
		bottom: 12.9%;
		right: 37.5%;
	}
}

@media (max-width: 1199px) {
	.map__marker-label {
		padding: 8px 15px;
	}
}

@media (max-width: 1040px) {
	.johannesburg {
		bottom: 8.2%;
		right: 43.9%;
	}
	
	.johannesburg .map__marker-label {
		left: unset;
		bottom: -54px;
		right: 70%;
	}
	
	.johannesburg img {
		height: 80px;
		transform: rotateZ(90deg);
	}
}

@media (max-width: 768px) {
	.map__container {
		width: 730px;
		height: 373px;
	}
	
	.map__marker-label {
		font-size: 14px;
		height: 41px;
	}

	.manchester-london {
		left: 43.2%;
		top: 4%;
	}
	
	.dublin {
		left: 28.8%;
		top: 21%;
	}
	
	.capetown {
		bottom: 12.4%;
		left: 41.7%;
	}

	.johannesburg {
		right: 35.3%;
		bottom: 7.4%;
	}

	.johannesburg .map__marker-label {
		left: 100%;
		right: unset;
		bottom: -17px;
	}

	.johannesburg img {
		height: 53px;
		transform: unset;
	}
}

@media (max-width: 675px) {
	.map__marker-label {
		padding: 5px 15px;
	}

	.johannesburg {
		bottom: 2.2%;
		right: 43.7%;%;
	}

	.johannesburg .map__marker-label {
		left: unset;
		bottom: -41px;
		right: -30%;
	}

	.johannesburg img {
		height: 62px;
		transform: rotateZ(90deg);
	}
}

@media (max-width: 453px) {
	.map__marker-label {
		font-size: 11px;
		height: 36px;
	}
}

{########### Animation ###########}
.map__marker {
	opacity: 0;
}

.animation--fade-left {
	animation: fade-left 1s ease-out forwards;
}

.animation--fade-up {
	animation: fade-up 1s ease-out forwards;
}

.map__marker:nth-child(1) {
	animation-delay: 0.4s;
}
.map__marker:nth-child(2) {
	animation-delay: 0.7s;
}
.map__marker:nth-child(3) {
	animation-delay: 1.4s;
}
.map__marker:nth-child(4) {
	animation-delay: 1.7s;
}
.map__marker:nth-child(5) {
	animation-delay: 2s;
}

@keyframes fade-left {
	from {
		opacity: 0;
		transform: translateX(-100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
{########### End Animation ###########}