.no-overflow {
    overflow: hidden;
}
.card {
    margin-left: 1rem;
    margin-right: 1rem;
}
.modal-content {
    overflow:hidden;
}
.gallery-show {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
    max-height: 1100px; /* LIMIT OF 16 PHOTOS IN GALLERY */
    opacity: 1;
    -webkit-transition: max-height 0.8s ease-in-out, opacity 0.4s ease-in-out;
    transition: max-height 0.8s ease-in-out, opacity 0.4s ease-in-out;
}
  .gallery-hidden {
    position: relative;
    width: 100%;
    max-height: 0px;
    opacity: 0;
    -webkit-transition: max-height 0.8s ease-in-out, opacity 0.4s ease-in-out;
    transition: max-height 0.8s ease-in-out, opacity 0.4s ease-in-out;
}

.image-link {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}.image-link:hover {
    opacity: 0.5;
    cursor: url("../cursors/plus-32-white.png"), pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.image-overlay-text {
    height: 5%;
    background-color: rgba(0, 0, 0, 0.5);
    color: whitesmoke;
}
@media only screen and (max-width: 768px) {
    .image-overlay-text {
        height: 50%;
    }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    .image-overlay-text {
        height: 20%;
    }
}

