.gallery {
    padding: 50px 0;
}
.gallery .header {
    margin-bottom: 50px;
}
.gallery .header h2 {
    margin: 0;
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 1.52px;
    text-transform: uppercase;
}
.gallery .slick-slider img {
    aspect-ratio: 1/1;
    object-fit: cover;
    padding: 0 5px;
}
.gallery .slick-dots {
    bottom: -50px;
    z-index: 3;
}
.gallery .slick-dots li button .slick-dot-icon:before {
    content: '';
}
.gallery .slick-dots li button {
    background: #fff;
    border: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9E9E9E;
}
.gallery .slick-dots li button .slick-dot-icon:before {
    width: 17px;
    height: 17px;
}
.gallery .slick-dots li.slick-active button .slick-dot-icon {
    opacity: 1;
    width: 17px;
    height: 17px;
    position: relative;
}
.gallery .slick-dots li button .slick-dot-icon {
    opacity: 1;
    width: 17px;
    height: 17px;
}
.gallery .slick-dots .slick-active button .slick-dot-icon:before {
    background: #6E162F;
    border-radius: 50%;
    opacity: 1;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-47%) translatey(-53%);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80vh;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
