
/*Menu starts*/
.js-menu_tab {
    margin: 0 auto;
    justify-content: center;
}
.js-nav-item {
    display: inline-block;
    text-align: center;
}
.js-nav-tabs .js-nav-link{
    transition: .3s;
}
.js-nav-tabs .js-nav-link.active {
    background: #c0392b;
    color: #fff;
    font-weight: 700;
    border: 1px solid #c0392b;
    text-transform: capitalize;
}
.js-nav-link {
    color: #000;
}
.js-nav-tabs .js-nav-link:hover {
    background: #c0392b;
    color: #fff;
    border: 1px solid #c0392b;
}
.js-single_menu {
    position: relative;
    margin-bottom: 75px;
    transition: .3s;
}
.js-single_menu:hover img{
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);
clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 0% 100%);

}
.js-single_menu img {
    width: 30%;
    position: absolute;
    height: 140px;
    -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    transition: .3s;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.js-menu_content {
    padding-left: 200px;
}
.js-menu_content h4 {
    font-size: 25px;
    font-weight: 300;
    border-bottom: 1px dashed #c0392b;
    line-height: 2;
    text-transform: capitalize;
}
.js-menu_content h4 span {
    font-size: 25px;
    font-weight: 800;
    float: right;
    font-style: italic;
    color: #c0392b;
}
.js-menu_content p {
    font-weight: 200;
    font-size: 16px;
    letter-spacing: 1px;
}
.js-menu_btn.js-btn.js-btn-danger {
    margin: 0 auto;
    display: block;
    width: 140px;
}
/*Menu ends*/
.js-menu_btn.js-btn.js-btn-danger {
	margin: 0 auto;
	display: block;
	width: 140px;
}
.js-btn.js-btn-danger {
	background: #c0392b;
	border: 1px solid #c0392b;
	transition: .3s;
	position: relative;
	z-index: 1;
	text-transform: capitalize;
	font-weight: 700;
	overflow: hidden;
	padding: 15px 25px;
}
.js-btn.js-btn-danger::before {
	position: absolute;
	content: '';
	background: #e74c3c;
	width: 100%;
	height: 100%;
	left: -100%;
	top: 100%;
	transition: .3s;
	z-index: -1;
}
.js-btn.js-btn-danger:hover:before{
    top: 0;
    left: 0;
}