.map-circle {
	position:relative;
	width:1474px;
	margin:0 auto;
	max-width:100%;
	text-align:right;
	z-index:100;
}

.map-circle_video {
	width:1328px;
}
.map-circle__point {
	position:fixed;
	bottom:16px;
	width:96px;
	height:96px;

	background-image:url(../images/map_circle.svg);
	background-position:center;
	background-size:contain;
	background-repeat:no-repeat;	
	transition:all 0.2s ease;
	transform:translateX(calc(-100% - 16px));
	transform-origin:center;
}

.map-circle__point:hover {
	transform:translateX(calc(-100% - 16px)) scale(1.05);
}

@media screen and (max-width:1000px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:480px){
	.map-circle__point {
		width:64px;
		height:64px;
	}

}