.main-map {
	position: relative;
	max-width: 100%;
	height:500px;
	margin:40px 40px 0;
	box-sizing:border-box;
	/* border-radius: 20px; */
	overflow: hidden;
	background-image: url(../map/map.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	margin-bottom:50px;
}

.main-map .mapa{
	position: absolute;
	left:0;
	width:100%;
	text-align: center;
	bottom:-50%;
	transition: 1s;
}
.main-map .mapa a{
	display: inline-block;
	padding:5px 20px;
	font-size:20px;
	background:linear-gradient(-45deg,#cf000d,#ae010c);
	border-radius: 30px;
	transition: 0.4s;
	margin:0 auto;
	color:#fff;
}
.main-map .mapa a img{
	width:30px;
}
.main-map:hover .mapa{
	bottom:50%;
}

@media(max-width:1000px){
	.main-map{
		margin-left: 0;
		margin-right: 0;
	}
	.main-map .mapa{
		bottom:40%;
	}
	.main-map:hover .mapa{
		bottom:45%;
	}
}
