/* Portfolio start */
.tabs-content 
{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.tabs-content p
{
    color: black;
    cursor: pointer;
}

.img-contents 
{
    position: relative;
    overflow: hidden;
}

.content 
{
    position: absolute;
    bottom: -80px;
    right: 0;
    left: 0;
    background: whitesmoke;
    padding: 10px 10px;
    transition:  0.4s;
}

.img-contents:hover .content 
{
    bottom: 0;
}

#portfolio .row {
    display: none;
}

#portfolio .part-1 {
    display: flex;
}

.tabs-content p.active {
    background: #d9232d;
    color: #fff;
    padding: 8px 19px;
    border-radius: 3px;
}
/* Portfolio End */