.inner-slider {
    background: url(../../images/new-img/portfolio/technology.jpg) 0 0/cover no-repeat;
    min-height: 528px;
}

.inner-slider,
.inners,
.portfolio-banner {
    padding: 60px 0 50px;
    margin: 90px 0 50px;
}

.inner-slider h1 {
    color: #fff;
}


#filters {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#filters li .filter.active,
#filters li.all .filter {
    border-bottom: 2px solid #f44438;
    color: #f44438;
}

#filters li .filter {
    font-size: 17px;
    display: block;
    padding: 9px 12px;
    font-weight: 600;
    cursor: pointer;
    min-width: 80px;
    border-bottom: 2px solid #fff;
    color: #747474;
    white-space: nowrap;
    text-transform: uppercase;
    text-align: center;
}

.port-card {
    padding: 0px 0px 30px;
    background: #fdfdfd;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* #portfoliolist .portfolio {
    width: 31.2%;
    margin: 20px 1%;
    display: none;
    float: left;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 28%);
} */

.port-card .image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.port-card .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.port-card .hover-image {
    opacity: 0;
    transform: scale(1);
    z-index: 2;
}

.port-card .app-content {
    padding: 20px;
    background: #fff;
    width: 90%;
    margin-top: -30px;
    z-index: 9;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 330px;
}

.port-card .app-title {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin: 0px 0px 20px;
}

.port-card .app-description {
    font-size: 16px;
    color: #555;
    margin: 0px 0 15px;
    text-align: left;
    font-weight: normal;
}

.port-card .btn-box {
    display: flex;
    column-gap: 20px;
}

.website-btn {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;
    background: #19242e;
    box-shadow: 6px 6px 0px #838383;
    transition: 1s;
    text-transform: uppercase;
    border: 1px solid transparent;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    column-gap: 10px;
}

/* 
.port-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
} */



.app-card {
    /* width: calc(33.333% - 30px); */
    background: #fff;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.default-image,
.hover-image {
    width: 100%;
    display: block;
    transition: opacity 0.4s;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.image-container:hover .hover-image {
    opacity: 1;
}

.image-container:hover .default-image {
    opacity: 0;
}

.app-content {
    padding: 20px;
}

#filters li {
    display: inline-block;
    margin-right: 10px;
}



.tag-down {
    display: flex;
    gap: 10px;
    padding: 16px 0px 16px;
    flex-wrap: wrap;
}

.tag-down li {
    padding: 2px 12px;
    background: #f2f5ff;
    border: 1px solid #000;
    font-size: 14px;
    border-radius: 4px;
    color: #000;
}


@media screen and (max-width: 450px) {

    .btn-mid {
        flex-direction: column !important;
        gap: 15px;
    }

    #filters {
        overflow: scroll;
        justify-content: space-around;
        padding: 10px 0px;
    }

    .port-card {
        grid-template-columns: 1fr;
    }

}