/* .imgFourthMap1 {
	position: absolute;
	width: 19%;
	left: 17.5%;
	top: 50%;
	z-index: 40;
	scale: 0.8;
	transform: translate(-50%, -50%);
	animation: grow 2s linear infinite;
} */

.imgFourthMap2 {
	position: absolute;
	width: 40%;
	left: 33%;
	top: 48.5%;
	z-index: 40;
	scale: 0.9;
	transform: translate(-50%, -50%);
	animation: grow 2s linear infinite;
}

.imgFourthMap3 {
	position: absolute;
	width: 40%;
	left: 50%;
	top: 50%;
	z-index: 41;
	scale: 1;
	transform: translate(-50%, -50%);
	animation: grow 2s linear infinite;
}

.imgFourthMap4 {
	position: absolute;
	width: 40%;
	left: 65%;
	top: 48.5%;
	z-index: 40;
	scale: 0.9;
	transform: translate(-50%, -50%);
	animation: grow 2s linear infinite;
}

/* .imgFourthMap5 {
	position: absolute;
	width: 19%;
	left: 78.3%;
	top: 50%;
	z-index: 40;
	scale: 0.8;
	transform: translate(-50%, -50%);
	animation: grow 2s linear infinite;
} */

.btnFourthPrev{
	position: absolute;
	width: 5%;
	top: 50%;
	left: 15%;
	transform: translate(-50%, -50%);
}

.btnFourthNext{
	position: absolute;
	width: 5%;
	top: 50%;
	left: 87%;
	transform: translate(-50%, -50%);
	z-index: 103;
}

.btnFourthPrivacy{
	position: absolute;
	width: 15%;
	top: 89%;
	left: 20%;
}

.btnFourthContact{
	position: absolute;
	width: 12%;
	top: 89%;
	left: 50%;
	transform: translateX(-50%);
}

.btnFourthDownload{
	position: absolute;
	width: 25%;
	top: 87%;
	left: 60%;
}

@keyframes grow {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.99);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}