        .project .bp_btn_tabs {
    padding: 8px 20px;
    border-radius: 50px;
}

.project .bp_btn_tabs::after {
    display: none;
}

.project .bp_btn_tabs.active {
    background-color: var(--tp-primary);
    box-shadow: 0 10px 40px rgba(11,205,195,0.45);
}

.project .bp_tab_group {
    box-shadow: none;
    padding: 0;
    margin-top: 40px;
    background-color: transparent;
}


.project .bp_ul_tabs {
    flex-wrap: wrap;
}
.project .row > .col {
    margin-bottom: 24px;
}

.project .tp-post-item,
.project .tp-post__thumbnail-wrapper,
.project .tp-post__thumbnail{
    height: 100%;
}

.project .tp-post-item,
.icon-project i{
    transition: all .4s;
}

.project .tp-post-item:hover {
    transform: translateY(-5px);
    transition: all .4s;
}

.project .tp-post__thumbnail {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.project .tp-post__thumbnail img {
    transition: all .4s;
}

.project .tp-post-item:hover .tp-post__thumbnail img {
    transform: scale(1.1);
    transition: all .4s;
}

.project .tp-post__thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,10,14,0.96) 12%, rgba(3,10,14,0.1) 60%);
    pointer-events: none;
    z-index: 2;
}

.project .tp-post__thumbnail::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center center;
    width: 200%;
    height: 0;
    background-color: #ffffff4d;
    pointer-events: none;
    z-index: 2;
    transition: all .7s;
}

.project .tp-post-item:hover .tp-post__thumbnail::after {
    height: 100%;
    transform: translate(-50%, -50%) rotate(-45deg) scale(2);
    opacity: 0;
    transition: all .7s;
}

.project .tp-post__content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    z-index: 4;
}

.project .tp-title {
    margin-bottom: 15px;
}

.project .tp-btn {
    width: 100%;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .4s;
}

.project .tp-btn:hover {
    color: var(--tp-primary);
    transition: all .4s;
}

.project .tp-btn:hover i {
    color: #fff;
}

.icon-project {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--tp-primary);
    transition: all .4s;
}


.icon-project i {
    transform: rotate(-45deg);
    transition: all .4s;
}


.project .tp-post-item:hover .icon-project {
    transform: rotate(45deg);
    transition: all .4s;
}

.project .bp_tag {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.project .bp_tag_item{
    display: inline-block;
    padding: 5px 20px;
    border-radius: 999px;
    background: rgb(255 255 255 / 13%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d5e2ea;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}


@media (max-width: 1200px) {
    .project .row > .col {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .project .row > .col {
        width: 100%;
    }
}

