/* Project Grid */
.elementor-editor-preview .el-project-items,
.elementor-editor-active .el-project-items{
    height: auto!important;
}
.el-project-items{
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.el-project-items .el-project-card {
    flex: 0 0 auto;
    width: calc(100% / 3);
    padding: 15px;
}
@media (max-width: 992px){
    .el-project-items .el-project-card{
        width: calc(100% / 2);
    }
}
@media (max-width: 992px){
    .el-project-items .el-project-card{
        width: calc(100% / 1);
    }
}

/* Project Card */
.el-project-card-inner{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.el-project-card .project-thumb{
    height: 490px;
}

.el-project-card .project-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-project-card:hover .project-thumb img {
    transform: scale(1.05);
}

.el-project-card .project-content {
    background-color: #eceeff99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-top-right-radius: 2px;
    padding: 20px 30px;
    width: 90%;
    position: absolute;
    left: -1px;
    bottom: -1px;
    padding-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-project-card:hover .project-content {
    padding-bottom: 75px;
}

.el-project-card .project-content .project-cat {
    font-size: 14px;
    font-weight: 600;
    color: var(--softgen-dark-color, #191d28);
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    padding-left: 20px;
}

.el-project-card .project-content .project-cat:before {
    background-color: var(--softgen-grey-color, #5d6374);
    content: "";
    width: 15px;
    height: 1.5px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.el-project-card .project-content .project-cat:hover{
    color: var(--softgen-dark-color, #191d28);
    padding-left: 25px;
}
.el-project-card .project-content .project-cat:hover:before{
    background-color: var(--softgen-dark-color, #191d28);
    width: 20px;
}

.el-project-card .project-content .project-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--softgen-dark-color, #191d28);
    margin: 0;
}

.el-project-card .project-content .project-title a{
    color: currentColor;
}

.el-project-card .project-content .project-title a:hover{
    color: var(--softgen-dark-color, #191d28);
}

.el-project-card .project-content .read-more {
    font-size: 20px;
    border: 1px solid var(--softgen-grey-color, #5d6374);
    color: var(--softgen-dark-color, #191d28);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 30px;
    bottom: -20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-project-card .project-content .read-more:hover {
    background-color: var(--softgen-primary-color, #4b83ff);
    border: 1px solid var(--softgen-primary-color, #4b83ff);
    color: var(--softgen-white-color, #fff);
}

.el-project-card:hover .project-content .read-more {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
}

/* Filter */
.dl-project-filter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.dl-project-filter li {
    cursor: pointer;
    font-family: var(--softgen-primary-font, "Syne");
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--softgen-dark-color, #111521);
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
}

.dl-project-filter li:hover, .dl-project-filter li.active {
    color: var(--softgen-primary-color, #ff6a32);
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 767px){
    .carousel-full_width .el-project-wrapper{
        overflow: hidden;
    }
}