
/* Cambio il colore del bottone CONTATTACI */

.contattaci {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 2px solid #3498D8;
    border-radius: 3px;
    color: #3498D8;
    display: inline-block;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 5px;
    padding: 12px 60px;
    text-transform: uppercase;
    transition: all 800ms ease 0s !important;
}

.contattaci:hover {
	background: none repeat scroll 0 0 #2a303c;
	border: 2px solid #2a303c;
	color: #ffffff;
	text-shadow: none;
}