.row-principal {
    display: grid;
    grid-template-columns: 25% 25% 50%;
    padding: 90px;
    background: #fff;
}
.row-left-one {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.row-left-inside {
    display: flex;
    gap: 2px;
}
.row-left-two {
    margin: 0 2px;
}
.row-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.posrel {
    position: relative;
}
.abscategname {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.abscategname span {
    background: rgba(8, 43, 101, 0.8);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 5px 20px;
    text-transform: uppercase;
}

#common-home .row-principal img {
    height: auto;
    max-height: 500px;
}

@media only screen and ( max-width: 767px ) {
    .abscategname span {
        font-size: 16px;
    }
}

@media only screen and ( max-width: 479px ) {
    .abscategname span {
        font-size: 14px;
    }
}