.project{
    min-height: 492px;
    list-style: none;
    position: relative;
    overflow: hidden;

}
.img-wrapper{
    overflow: hidden;
    border-radius: 10px;
}
.project::after{
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: black;
    opacity: 0.1;
}
.project:hover img{
    transform: scale(1.2) rotate(10deg);
}
.project img{
    min-height:492px;
    transition: all ease 0.5s;
	object-fit:cover;
}
.project-info{
    position: absolute;
    bottom: 10px;
    left: 45px;
    z-index: 1;
}
.project .project-title a{
    font-size: 24px;
    line-height: 47px;
    color: #fff;
    cursor: pointer;
}
.project .project-title::before{
    content: "|";
    color: #FE0B0B;
    margin-right: 15px;
}
.projects-list{
    margin: 0;
    padding: 0;
    position: relative;
    top: 60px;
    left: -140px;
    width: 110%;
}
.projects-list .slick-track{
    display: flex;
    column-gap: 20px;
}
.product-category{
    margin-bottom: 0;
    padding-left: 25px;
}
.product-category span{
    color:#C5C5C6;
    font-size: 16px;
    line-height: 26px;
    text-shadow: 1px 1px #000;
    font-weight: 600;
}

@media(max-width: 1440px){
    .projects-list{
        width: 100%;
        top: 0;
        left: -60px;
    }
    .project img{
        min-height:331px;
        transition: all ease 0.5s;
    }
    .project{
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
    }
    .project::after{
        height: 331px;
        top:auto;
        bottom: 0;
    }
    .project-info{
        left: 25px;
    }
}

@media(max-width: 1024px){
    .project img{
        min-height:612px;
    }
    .projects-list{
        left: 0;
        top:-92px;
    }
    .project::after{
        height: 100%;
        top:auto;
        bottom: 0;
    }
	.mean-bar a.header-btn-new.mobile-btn{
		left:0;
		right:0;
		margin:auto;
		width:max-content;
		top:30%;
	}
	.mean-bar .sidebarBtn {
    top: 30%;
	}
}

@media(max-width: 992px){
    .project img{
        min-height:512px;
    }
    .projects-list .slick-track{
        column-gap: 15px;
    }
}

@media(max-width: 767px){
    .project img{
        min-height:424px;
    }
    .project{
        align-items: flex-start;
        justify-content: start;
        border-radius: 10px;
        margin-right: 10px;
        max-height:424px;
    }
    .project-info{
        bottom: 80px;
    }
    .project::after{
        height: 424px;
        top:0;
        bottom: auto;
    }
}