.btn-custom1 {
	border: 2px solid;
	color: inherit;
	background: none;
	line-height: 30px;
	min-height: 30px;
	cursor: pointer;
	padding: 7px 20px;
	display: inline-block;
	margin: 15px 0;
	text-transform: uppercase;
	outline: none;
	position: relative;
	z-index: 1;
	border-radius: 10px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-custom1:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-custom1:hover {
  text-decoration: none;

}

.btn-custom1-black {
	border-color:  #444;
	color: #444;


	
}

.btn-custom1-black:after {
	width: 100%;
	height: 0;
	bottom: 0;
	left: 0;
	background: #444;
	
}

.btn-custom1-black:hover,
.btn-custom1-black:active {
	color: #fff;
	
}

.btn-custom1-black:hover:after,
.btn-custom1-black:active:after {
	height: 100%;
	border-radius: 5px;
	
}