.img-container-box {
    position: relative;
    height: 50vh;
}

.img-container {
    position: absolute;
}

.img-container img {
    width: 80%;
    border-radius: 12px;
}

/* deslocamentos */
.img-container:nth-child(1) {
    top: 5vw;
    left: 100px;
    z-index: 1;
}

.img-container:nth-child(2) {
    top: 7vh;
    left: 80px;
    z-index: 2;
}

.img-container:nth-child(3) {
    top: 15vh;
    left: 120px;
    z-index: 3;
}

@media (min-width: 1024px) {
    .img-container {
        position: absolute;
        width: 100%;
    }

    .img-container img {
        width: 80%;
        border-radius: 12px;
    }

    /* deslocamentos */
    .img-container:nth-child(1) {
        top: 0;
        left: 100px;
        z-index: 1;
    }
}