   32. Opera Projects Multi-Column Showcase
   ========================================================================== */
.opera-projects-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.projects-full-bg {
    min-height: 850px;
    position: relative;
    background: #0b0f1e;
}

.project-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.project-bg-layer.active {
    opacity: 1;
    visibility: visible;
    animation: slowZoom 10s ease-out forwards;
}

.project-bg-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 15, 30, 0.3), rgba(11, 15, 30, 0.7));
    z-index: 2;
}

.projects-content-wrapper {
    position: relative;
    z-index: 10;
}

.project-vertical-col {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 850px;
    padding-top: 60px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.project-vertical-col:last-child {
    border-right: none;
}

.project-vertical-col:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
}

.project-header-text {
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-vertical-col:hover .project-header-text {
    transform: translateY(-15px);
}

.project-header-text h5 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-header-text h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

@media (max-width: 991px) {
    .project-vertical-col {
        height: auto;
        padding: 40px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .projects-full-bg { min-height: auto; }
}

.work-gallery-btn {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}


/************************************/
