/* ---Lightbox try --- */
img {
    max-width: 100%;
    height: auto;
}

#gallery {
    max-width: 100%;
    height: auto;
    padding: 7px 0;
}

* {
    box-sizing: border-box;
}

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

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

.column {
    float: left;
    width: 25%;
}

.column-shadow {
    float: left;
    width: 25%;
}

@media only screen and (max-width: 480px) {
    /* Smartphone view: 1 tile */
    .column {
        width: 100%;
        padding-bottom: 100%;
    }
}

@media only screen and (max-width: 650px) and (min-width: 481px) {
    /* Tablet view: 2 tiles */
    .column {
        width: 50%;
        padding-bottom: 50%;
    }
}

@media only screen and (max-width: 1050px) and (min-width: 651px) {
    /* Small desktop / ipad view: 3 tiles */
    .column {
        width: 33.3%;
        padding-bottom: 33.3%;
    }
}

@media only screen and (max-width: 1290px) and (min-width: 1051px) {
    /* Medium desktop: 4 tiles */
    .column {
        width: 25%;
        padding-bottom: 25%;
    }
}

/*@media screen and (max-width: 479px) {
    /* start of phone styles */
/*img {
    max-width: 100%;
    height: auto;
}

.row {
   max-width: 100%;
   height: auto;
}

.column {

    max-width: 100%;
    height: auto;
}
}*/

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #A19060;
}

/* Modal Content */
#modal-text {
    color: #f3f3f3;
    padding-bottom: 10px;
}

#bmob-text {
    color: #80000a;
    text-align: center;
    font-weight: bold;
}

.modal-content {
    position: relative;
    background-color: #A19060;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 960px;
}

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

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

.mySlides {
    display: none;
}

.cursor {
    cursor: pointer
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #ffffff;
    font-weight: bold;
    font-size: 35px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.caption-container {
    text-align: center;
    background-color: #A19060;
    padding: 2px 16px;
}

.demo {
    opacity: 0.6;
}

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

.hover-shadow:hover {
    opacity: 0.5;
    color: #979696;
}

/* ---W3 School Try ---
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.gallery {
    width: 640px;
    margin: 0 auto;
    padding: 5px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.gallery > div {
    position: relative;
    float: left;
    padding: 5px;
}

.gallery > div > img {
    display: block;
    width: 200px;
    transition: .1s transform;
    transform: translateZ(0);
}

.gallery > div:hover {
    z-index: 1;
}

.gallery > div:hover > img {
    transform: scale(1.7,1.7);
    transition: .3s transform;
}

.cf:before, .cf:after {
    display: table;
    content: "";
    line-height: 0;
}

.cf:after {
    clear: both;
   } */
