.apartment-images-wrapper {
    display: flex;
    justify-content: center;
}

.apartment-image {
    height: 500px;
    /*max-height: 500px;*/
    max-height: 400px;
}

.project-bar-info {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

#image-container {
    width: 60%;
    /*object-fit: contain;*/
    object-fit: scale-down;
}

details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateX(-10px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}
