/* CSS Document */
.servicos{
	color: #fe3800;
	font-family: montserrat;
	margin-left: 35px;
	margin-right: 25px;
	text-align: center;
}

.conteudomapa {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	
	
	
}

.conteudomapa h5{
	text-align: center;
}

.conteudomapa img{	
	width: 100%;
	max-width: 280px;
	margin-bottom: 10px;
	border:double 5px rgba(15,5,66,1.00);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
	position: relative;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44,1 )
}


.conteudomapa img::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	box-shadow: 0 5px 15px 0 rgba(0,0,0,0.3);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44,1);
	z-index: -1;
		
}
.conteudomapa img:hover{
	transform: scale(1.15,1.15)
}

.conteudomapa img:hover::after{
	opacity:1;
}

.conteudomapa article{
	margin: 20px;
	
} 

@media(min-width:1024px){
	.servicos{
	color: #fe3800;
	font-family: montserrat;
	margin-left: 35px;
	margin-right: 25px;
	text-align:inherit;
	
}
}