/* .bgImage {

    background-color: #000 !important;

    background-image: url("images/detail-pic/company-bnr1.jpg");
} */



.boxGeneral {
    position: relative;
    /* This makes the container the positioning reference */
    /* width: 300px; */
    /* height: 200px; */
    /* background-color: lightgray; */
}

.box1 {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 150px;
    height: 150px; */
    /* background-color: lightblue; */
    z-index: 1;
    /* Ensure Box 1 is behind Box 2 */
}

.box2 {
    position: absolute;
    top: 50px;
    left: 50px;
    /* width: 150px;
    height: 150px; */
    /* background-color: lightcoral; */
    z-index: 2;
    /* Box 2 will overlap Box 1 */
}