.homepage .gallery {
    margin: 0px;
    padding: 0px;
}

.homepage .gallery .video-slider .play-video img {
    transition: all 200ms ease-in-out;
}
.homepage .gallery .video-slider .play-video img:hover {
    transform: scale(1.1);
    transition: all 200ms ease-in-out;
}
.homepage .gallery .carousel-indicators-photo .btn-secondary-carousel {
    width: 12px;
    height: 12px;
}
.homepage .gallery .carousel-indicators-photo .btn-secondary-carousel.active {
    width: 12px;
    height: 12px;
}
.homepage .gallery .carousel-indicators-video .btn-secondary-carousel {
    width: 12px;
    height: 12px;
}
.homepage .gallery .carousel-indicators-video .btn-secondary-carousel.active {
    width: 12px;
    height: 12px;
}

/* Photo Gallery Item Hover Effect */
.gallery-item-homepage {
    position: relative;
    overflow: hidden;
    display: block;
}

.gallery-item-homepage .overlay-homepage {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-homepage:hover .overlay-homepage {
    opacity: 1;
}

.gallery-item-homepage .overlay-homepage i {
    color: white;
    font-size: 2rem;
}

/* Modal Gallery for Homepage */
.modal-gallery-homepage {
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 1);

    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
}

.modal-gallery-homepage.d-none {
    display: none;
}

.modal-gallery-homepage .modal-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    color: white;
    z-index: 1052;
    background-color: #020202;
}

.modal-gallery-homepage .modal-indicator-homepage {
    font-size: 1.1rem;
    color: white;
}

.modal-gallery-homepage .modal-close-homepage {
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1053;
}

.modal-gallery-homepage .modal-close-homepage:hover {
    color: #bbb;
}

.modal-gallery-homepage .modal-content {
    margin: auto;
    display: block;

    max-width: 100%;
    max-height: 100vh;

    width: auto;
    height: auto;

    padding: 0;
    min-height: 0vh;
}

.modal-gallery-homepage .modal-content-wrapper-homepage {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.modal-gallery-homepage .modal-content-wrapper-homepage img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
