.UIImageDetail p.title {
            font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    display: inline-block;
    padding-left: 0;
    margin: 0px;
    text-align: left;
    background-color: #DA251D;
    padding: 7px 10px;
    display: inline-block;
}
.UIImageDetail ul.list::before {
    content: "" ;
    height: 2px ;
    width: 100% ;
    background-color: #DA251D ;
}
.UIImageDetail ul.list {
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
}
.UIImageDetail li.item {
        /* border-radius: 3px; */
        overflow: hidden;
        /*box-shadow: 0 2px 3px #90949c;*/
        width: calc(50% - 5px);
        aspect-ratio: 1 / 1;
        object-fit: cover;
        padding: 0 !important;
}
.UIImageDetail li.item a {
        display: inline-block;
        width: 100%;
        height: 100%;
}
.UIImageDetail li.item a img {
        min-width: 100%;
        object-fit: cover;
        height: 100%;
        border-radius: 0 !important;
}
.UIImageDetail .image-title, .UIImageDetail .description{
    display: none;
    
}
@media only screen and (max-width: 768px){
        .UIImageDetail {
                padding: 0 10px;
                margin-bottom: 10px;
        }
        .UIImageDetail li.item {
                width: calc(50% - 5px);
        }
}
