.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    font-weight: 100;
    color: white;
    cursor: pointer;
    user-select: none;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    background-color: #ffffff00;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}
.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
    padding: 5px;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 290px;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

/* .lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
} */

.lightbox {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
    /* position: fixed;
    display: none;
    background-color: rgb(0 0 0 / 57%);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px); */
}

.lightbox-content {
    position: relative;
    margin: auto;
    margin-top: -20px;
    padding: 0;
    height: auto;
    width: 60%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 13px;
    top: 45%;
    cursor: pointer;
    font-size: 25px;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

.gallery-section {
    padding: 40px 0;
    background: #161619;
    width:100%;
}

.more-projects a {
    padding: 20px 80px;
    background: transparent;
    color: white;
    border: 1px solid #e69f66;
    font-size: 18px;
    box-shadow: 0px 0px 7px 0px #e69f66;
}