
/* Gallery */

/* tab menu style */	
.gallery-lists {
  width: 100%;
  margin: 45px 0 30px;
  text-align: center; }
  .gallery-lists:first-child {
    margin-top: 0; }
  .gallery-lists:last-child {
    margin-bottom: 0; }
  .gallery-lists ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .gallery-lists li {
    background: #ececec;
    color: #868686;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    padding: 7px 20px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    margin-right: -2px;
    position: relative;
    transition: all 0.3s; }
    .gallery-lists li.active, .gallery-lists li:hover {
      background: #00325d;
      color: #fff; }
    .gallery-lists li:first-child {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .gallery-lists li:last-child {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; }
  .gallery-lists.alignl {
    text-align: left; }
  .gallery-lists.alignr {
    text-align: center; }

	
	
/* image style */

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h1 {
    text-align: center;
    margin-top: 70px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    max-width: 800px;
    margin: 25px auto;
    color: #888;
    font-size: 18px;
}

.tz-gallery {
    padding: 40px;
}

.tz-gallery .lightbox img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}


.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.tz-gallery img {
    border-radius: none;
	padding-bottom:21px;
}

.baguetteBox-button {
    background-color: transparent !important;
}


@media(max-width: 768px) {
    body {
        padding: 0;
    }

    .container.gallery-container {
        border-radius: 0;
    }
}	