.prodBox {
    position: relative;
    overflow: hidden;
   
}



.prodImg img {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all 0.4s;
 
}

.prodBox:hover .prodImg img {
    transform: rotate(5deg) scale(1.2);
    filter: brightness(1);
}
.prodContent {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.prodContent .prodTitle {
    background: var(--primary);
    color: var(--blackLight);
    padding: 12px 30px;
    text-align: center;
    min-width: 180px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s;
}

.prodArrow {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.4s;
    transition: transform 0.3s ease-in-out;
}

.prodBox:hover .prodArrow {
    transform: translateX(5px) rotate(360deg);
}

@media(max-width: 767px){
    .tab-content .productSec .sectionHeader {
        width: 100%!important;
    }
    .tabSec.prodSec .nav.nav-pills{
        flex-wrap: wrap;
    }
    .tabSec.prodSec .nav-justified .nav-item{
        min-width: 50%;
    }
    .tabSec.prodSec .nav.nav-pills .nav-link{
        font-size: 13px;
    }
}