﻿.lightbox {
	position: relative;
	overflow: hidden;
	height: 300px;
	display: block;
	transition: all .2s ease-in-out;
}
.lightbox img {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: cover;
}
.lightbox:hover img {
	top: -15%;
	left: -15%;
	width: 130%;
	max-width: 130%;
	height: 130%;
	max-height: 130%;
}
.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
}
.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}
.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}
.tz-gallery {
    padding: 40px;
}
/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}
.tz-gallery .lightbox img {
	transition: all .2s ease-in-out;
}
.tz-gallery .lightbox:after {
    position: absolute;
    top: 0px;
    left: 0px;
	right: 0px;
	bottom: 0px;
    opacity: 0;
	background-image: url(../images/magnifier.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 26px auto;
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
    transition: 0.4s;
}
.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}
.baguetteBox-button {
    background-color: transparent !important;
}