/* SECTION ACTION */
#azione {
    background-color: #DA054A;
    padding: 60px 0;
    position: relative;
	text-align: center;
}

#azione button {
    border: 2px solid rgba(255, 255, 255, .8);
	background-color: rgba(0, 0, 0, 0);
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 400;

	-webkit-transition: .4s all ease-in-out;
	   -moz-transition: .4s all ease-in-out;
	    -ms-transition: .4s all ease-in-out;
	     -o-transition: .4s all ease-in-out;
	        transition: .4s all ease-in-out;
}

#azione button:hover {
	background-color: #CA0444;
}

@media (max-width: 768px) {
	#azione button {
		padding: 15px 10px;
	}
}