.galleryThumbnailText {

}

.galleryThumbnail {
    overflow: hidden;
    transition: 0.7s;
    text-align: center;
    /*padding-top: 3%;*/

}

.galleryThumbnail:hover {
    transform: scale(1.1);
    transition: transform 0.5s, filter 1.5s ease-in-out;
}

.galleryThumbnail img {
    width: 100%; /* width of container */
    height: 200px; /* height of container */
    object-fit: cover;
    object-position: 20% 10%;
    border: 3px solid black;
}

.galleryThumbnail:hover img {
}

.galleryImg {
    width: 100%; /* width of container */
    height: auto; /* height of container */
    object-fit: cover;
    object-position: 20% 10%;
    border: 3px solid black;
}

.galleryImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.galleryImg:hover {opacity: 0.7;}

.row > .column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    margin: auto;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: fixed;
    /*bottom: 0;*/
    /*background-color: rgb(0,0,0); !* Fallback color *!*/
    background-color: rgba(0,0,0,0); /* Black w/ opacity */
    margin: auto;
    padding: 0;
    width: 100%;
    /*max-width: 100%;*/
    text-align: center;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
    display: none;
    margin: auto;
    width: 70vw;
    height: 50vh;
    /*max-height: 90%;*/
    /*height: 80%;*/
}

/* On hover, add a black background color with a little bit see-through */
/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

img.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}