.plate1>img {
    animation: mover3 4s infinite alternate;
}

.container-gal {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 4% 0;
}

.container-gal .item1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 20%;
}

.container-gal .item1 p {
    font-size: 6vw;
    font-family: 'LilitaOne';
    color: var(--brown);
}

.container-gal .item1 span {
    font-size: 18px;
    color: var(--brown);
}

.container-gal .item2 {
    position: relative;
    padding: 0 0 0 16%;
}

.container-gal .item2 .plate1 img {
    width: 33vw;
}

.puntos {
    width: 30%;
    position: absolute;
    bottom: -6%;
    left: 8%;
    z-index: -1;
}

.square-yellow {
    width: 90%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
}

.plate1::after {
    content: "";
    position: absolute;
    top: -2%;
    right: 20%;
    width: 40%;
    height: 71%;
    border-radius: 50%;
    border: 2px solid var(--brown);
    z-index: -1;
}

.plate1::before {
    content: "";
    position: absolute;
    top: -10%;
    right: 20%;
    width: 30%;
    height: 50%;
    border-radius: 50%;
    border: 2px solid var(--brown);
    z-index: -1;
}

.fa-chevron-right:before,
.fa-chevron-left:before {
    color: var(--yellow);
}

.fa-chevron-right:before:hover,
.fa-chevron-left:before:hover {
    color: #fafafa;
}

.btn-close {
    position: fixed;
    top: 10%;
    right: 3%;
    font-size: 36px;
    color: var(--yellow);
}

.btn-close:hover {
    color: rgb(194, 194, 194);
}

.section-gallery {
    padding: 6% 12%;
}

.container-gallery {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}

.container-gallery>.item img {
    border-radius: 50px;
}

.container-gallery>.item:hover {
    filter: brightness(0.7);
    cursor: pointer;
}


/* ---LIGHTBOX STYLES--- */

.lightbox_section {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 92;
}

.lightbox_active {
    opacity: 1;
    pointer-events: initial;
}

.lightbox_section .lightbox_box {
    position: relative;
    width: 60%;
    z-index: 93;
}

.lightbox_section .lightbox_box i {
    position: absolute;
    color: var(--turquoise);
    font-size: 50px;
    cursor: pointer;
}

.lightbox_section .lightbox_box i:hover {
    color: white;
}

.lightbox_section .prev_modal {
    top: 50%;
    left: -10%;
    transform: translateY(-50%)
}

.lightbox_section .next_modal {
    top: 50%;
    right: -10%;
    transform: translateY(-50%)
}

.lightbox_section .blur_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000d0;
    z-index: 92;
}

.modal_box {
    text-align: center;
}

@media (max-width: 996px) {
    .section-gallery {
        padding: 6% 10%;
    }
    .puntos {
        width: 25%;
        bottom: 9%;
        left: 9%;
    }
    .plate1::after {
        top: 10%;
        right: 2%;
        width: 38%;
        height: 50%;
    }
    .plate1::before {
        height: 36%;
        top: -1%;
        right: 8%;
        width: 25%;
    }
    .container-gal .item2 .plate1 img {
        width: 70vw;
    }
    .container-gal .item1 {
        padding: 0px 10%;
    }
    .item1 {
        order: 2;
    }
    .container-gal {
        grid-template-columns: 100%;
    }
    .container-gallery {
        grid-template-columns: 1fr;
    }
    .lightbox_section .lightbox_box {
        width: 82%;
    }
    .lightbox_section .lightbox_box i {
        font-size: 30px;
    }
    .lightbox_section .prev_modal {
        left: -9%;
    }
    .lightbox_section .next_modal {
        right: -9%;
    }
}