header {
    z-index: 1;
}

.section-gallery {
    background: radial-gradient(circle at 65% 0%, transparent 0%, transparent 29.9%, var(--yellow) 30%, var(--yellow) 44.9%, transparent 45%, transparent 100%);
}

.fa-chevron-right:before,
.fa-chevron-left:before {
    color: #f89513;
}

.fa-chevron-right:before:hover,
.fa-chevron-left:before:hover {
    color: #fafafa;
}

.btn-close {
    position: fixed;
    top: 10%;
    right: 3%;
    font-size: 36px;
    color: #f89513;
}

.btn-close:hover {
    color: rgb(194, 194, 194);
}

.section-gallery {
    padding: 16% 12%;
}

.container-gallery {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}

.container-gallery>.item img {
    border-radius: 50px;
}

.container-gallery>.item {
    background-color: var(--red);
    text-align: center;
    color: #fff;
    padding-bottom: 8px;
}

.container-gallery>.item>span {
    font-family: 'Fashion Stamp';
    font-size: 20px;
}

.section-gallery>.item:hover {
    filter: brightness(0.5);
    cursor: pointer;
}

.container-gallery>.item:hover {
    filter: brightness(0.7);
    cursor: pointer;
}

@media (max-width: 996px) {
    .section-gallery {
        background: radial-gradient(circle at 60% 0%, transparent 0%, transparent 5%, var(--yellow) 4%, var(--yellow) 8%, transparent 0%, transparent 100%);
    }
    .section-gallery {
        padding: 40% 6%;
    }
    .btn-close {
        position: fixed;
        top: 3%;
        right: 3%;
        font-size: 26px;
        color: #fff;
    }
    .container-gallery {
        grid-template-columns: 1fr;
    }
}


/* ---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) {
    header {
        z-index: 1;
    }
    .lightbox_section .lightbox_box {
        width: 92%;
    }
    .lightbox_section .lightbox_box i {
        font-size: 30px;
    }
    .lightbox_section .prev_modal {
        left: -9%;
    }
    .lightbox_section .next_modal {
        right: -9%;
    }
}