/* -------------------------------------------------- */
/*	Content boxes 
/* -------------------------------------------------- */

.titulo_servicos{
	position: relative;
	text-align: center;
	text-transform: uppercase;
	font-size: 40px;
	color: #000000;
}

.box-article {
	position: relative;	
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
	-webkit-transition: background-color .35s ease-out;
			transition: background-color .35s ease-out;
	padding: 20px 0px;
}
.box-article:hover { 
	background-color: #B3BA04; /** Cor de Fundo da Box */
}	

.content-circle {
	display: block;
	width: 170px;
	height: 170px;
	margin: 0 auto 20px;
	border: 1px solid #B3BA04;	
	-webkit-border-radius: 50%;
			border-radius: 50%;	
	
	-webkit-transform: scale(1);
			transform: scale(1);
	-webkit-transition: all .45s ease;
			transition: all .45s ease;
}
.img-circle{
	border: 10px solid #FFFFFF;
}
.content-circle img{
	width: 100%;
	/* height: auto; */
	height: 100%;
}
.content-text {		
	margin-top: 30px;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
}
.content-boxes-title {
	font-size: 16px;	
	font-weight: 400;
	font-style: normal;
	color: #000000;
	margin-bottom: 20px;
}
.content-text p {
	padding: 0;
	margin: 0;
	font-size: 12px;
	font-weight: 400;	
	color: #000000;
}
.box-article:hover .content-circle {
	border: 1px solid #FFFFFF;	
	-webkit-transform: scale(1.075);
			transform: scale(1.075);	
}

.box-article .content-circle:hover {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);	
}


