/* hero landing button */

.heroButton {
	
	background:linear-gradient(to bottom, #e09d29 5%, #3e4546 100%) #e09d29;
	
    margin-left:50px;

	border-radius:100px;
    width:200px;
    height:25px;
	border:1px solid #f1cc25;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:'Montserrat', sans-serif;
    font-weight: bold;
    font-size:17px;
	padding:7px 25px;
	text-decoration:none;
	text-shadow:0px 1px 0px #000000;    
    transition: all 0.5s;    
}
.heroButton:hover {
	/* background:linear-gradient(to bottom, #3e4546 5%, #e09d29 100%) #3e4546; */
    background: rgb(62, 69, 70);
    border:1px solid black;
    transition: all 0.5s;    
	    
}
.heroButton:active {
	position:relative;
	top:1px;
}

/* EOF hero landing button */