
.container-bannerPrima {
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position:relative;
    z-index:999;
}

#pc-main-close-button {
    width: fit-content;
    height: fit-content;
    background-color: rgba(204, 203, 203, 0.9);
    color: rgb(0, 0, 0);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid rgb(226, 232, 240);
    padding: 4px;

}

.containerImgPrima {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;

    a {

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
           
        }
    }
}

.fatherClose {
    display: flex;
    justify-content: end;
    position: relative;
    right: 0.5rem;
    top: 2rem;
    cursor:pointer;
}

@media (min-width:1024px) {

    
    .container-bannerPrima {
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bannerPrimaImg {
        width: 50%;
        height: 100%;
        overflow: hidden;
        display: grid;
        grid-template-rows: 1fr max-content;

        .fatherClose {
            display: flex;
            justify-content: end;
            position: relative;
            top: 1rem;
            right: 7rem;
            z-index: 999;
            cursor:pointer;
        }

        .containerImgPrima {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: start;

            a {

                img {
                    width: 85%;
                    height: 85%;
                    object-fit: cover;
                    border-radius: 4px;
                    position: relative;
                    bottom: 1rem;
                }
            }
        }
    }
}