.product-list{
    background-color: #0b0b0b;
    /* position: relative; */
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-flow: row;
    column-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.product-list2{
    background-color: #151515;
    /* position: relative; */
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-flow: row;
    column-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.prod-list-left{
    position: relative;
    width: 300px;
    padding-bottom: 50px;
}
.prod-back-image{
    position: relative;
    top:55px;
}
.prod-back-img{
    width: 300px;
}
.prod-front-image{
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50px;
}
.prod-front-img{
    width: 250px;
    height: 376px;
}
.prod-list-right{
    display: flex;
    flex-flow: column;
    align-items: center;
}
.prod-cat{
    display: flex;
    margin-bottom: 30px;
}
.prod-cat-content{
    margin-right: auto;
    border-radius: 10px;
    background-color: #484848;
    color: white;
    padding: 5px 10px 5px 10px;
}
.prod-name{
    color: #d9c581;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}
.prod-desc{
    color: white;
    line-height: 1.8rem;
    font-size: 18px;
    margin-bottom: 50px;
}
.prod-butt{
    font-size: 16px;
    font-weight: bold;
    color: black;
    background-color: #d9c581;
    border-radius: 7px;
    padding: 10px 15px 10px 15px;
}
@media only screen and (max-width:750px){
    .product-list{
        flex-flow: column;
    }
    .product-list2{
        flex-flow: column;
        row-gap: 20px;
    }
    .prod-list-left{
        margin-bottom: 20px;
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
    

}