.btn {
	height: 46px;
	border-radius: 5px;
	justify-content: center;
	font: 600 14px/18px Montserrat;
	padding: 0 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
	transition: .5s;
	border: none;
	cursor: pointer;
}
.btn-red {
	background-color: #E30613;
	box-shadow: 0px 11px 13px #A2040E67;
	color: #FFF;
}
.btn-white {
	border: 1px solid #70707033;
	background-color: #FFF;
	box-shadow: 0px 8px 12px #A2A2A26B;
	color: #000;
}
.btn-light {
	border: 1px solid #70707033;
	color: #000;
	font-weight: 300;
}
.btn:hover {
	box-shadow: none;
}
.btn-light:hover {
	border-color: #000;
}
.btn-fill-width {
	width: 100%;
}

@media (max-width: 767px)
{
	.btn {
		padding: 0 40px;
	}
}