/* BASE */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11
| Visit us: @ p11.com
|--------------------------------------------------------------------------
/* GLOBAL*/
/* FONTS*/
/* COLORS */
/* BREAKPOINTS */
/* Extra small mobile */
/* Mobile */
/* Tablet */
/* Middle Sized Devices */
/* Small Laptop */
/* Large Laptop / Desktop */
/* Large Desktop */
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/* BLOCKS */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* 
https://jewelfarazi.me/create-jquery-isotope-responsive-masonry-layout/
https://jewelfarazi.github.io/isotope-masonry-layout/
Projects */
.masonry-gallery {
  text-align: center;
}
.masonry-gallery .filters-list {
  display: inline-block;
  text-align: center;
  margin-bottom: 25px;
}
.masonry-gallery .filters-list li {
  font-family: sans-serif;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.masonry-gallery .filters-list li:hover, .masonry-gallery .filters-list li.active {
  text-decoration: underline;
}
.masonry-gallery .masonry-gallery-list {
  margin: 0 auto;
  list-style: none;
  overflow: hidden;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.masonry-gallery .masonry-gallery-list .gallery-item {
  margin: 0;
  position: relative;
}
@media (max-width: 768px) {
  .masonry-gallery .masonry-gallery-list .gallery-item {
    width: 100% !important;
  }
  .masonry-gallery .masonry-gallery-list .gallery-item:last-of-type {
    margin-bottom: 0 !important;
  }
}
.masonry-gallery .masonry-gallery-list .gallery-item a {
  display: block;
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  cursor: zoom-in;
}
@media (max-width: 768px) {
  .masonry-gallery .masonry-gallery-list .gallery-item a {
    pointer-events: none;
  }
}
.masonry-gallery .masonry-gallery-list .gallery-item a .overlay {
  width: 105%;
  height: 105%;
  opacity: 0.95;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s opacity ease-in-out;
}
.masonry-gallery .masonry-gallery-list .gallery-item a .caption {
  letter-spacing: 1px;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 20;
  opacity: 0;
  text-align: center;
  transition: 0.3s opacity ease-in-out, 0.3s bottom ease-in-out;
  font-size: 1.125rem;
  width: 100%;
  padding: 0.75em;
  line-height: 1.125em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .masonry-gallery .masonry-gallery-list .gallery-item a .caption {
    position: relative;
    bottom: auto;
    top: auto;
    height: auto;
    max-height: 350px;
    opacity: 1;
  }
}
.masonry-gallery .masonry-gallery-list .gallery-item a .bgimg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  -webkit-transition: transform 1s ease-out;
  -moz-transition: transform 1s ease-out;
  -ms-transition: transform 1s ease-out;
  -o-transition: transform 1s ease-out;
  transition: transform 1s ease-out;
}
@media (max-width: 768px) {
  .masonry-gallery .masonry-gallery-list .gallery-item a .bgimg {
    position: relative;
    bottom: auto;
    top: auto;
    height: auto;
    height: 60vw;
  }
}
@media (max-width: 640px) {
  .masonry-gallery .masonry-gallery-list .gallery-item a .bgimg {
    height: 300px;
  }
}
.masonry-gallery .masonry-gallery-list .gallery-item a:hover > .caption {
  bottom: 0;
  opacity: 1;
}
.masonry-gallery .masonry-gallery-list .gallery-item a:hover > .overlay {
  opacity: 0.9;
}
.masonry-gallery .masonry-gallery-list .gallery-item a:hover {
  display: block;
}
.masonry-gallery .masonry-gallery-list .gallery-item a:hover .bgimg {
  transform: scale(1.25);
}
@media (max-width: 768px) {
  .masonry-gallery .masonry-gallery-list .gallery-item:not([style*="display: none"]) a {
    min-height: 60vw;
  }
}
@media (max-width: 640px) {
  .masonry-gallery .masonry-gallery-list .gallery-item:not([style*="display: none"]) a {
    min-height: 300px;
  }
}
.masonry-gallery .masonry-gallery-list .gallery-item:not([style*="display: none"]):nth-child(4n+1) a {
  min-height: 600px;
}
@media (max-width: 1248px) {
  .masonry-gallery .masonry-gallery-list .gallery-item:not([style*="display: none"]):nth-child(4n+1) a {
    min-height: 400px;
  }
}

/* Touch devices (including iPads) */
@media (hover: none) and (pointer: coarse) {
  .masonry-gallery .masonry-gallery-list .gallery-item a .caption {
    position: relative;
    bottom: auto;
    top: auto;
    height: auto;
    height: auto;
    opacity: 1;
  }
  .masonry-gallery .masonry-gallery-list .gallery-item a .bgimg {
    position: relative;
    bottom: auto;
    top: auto;
    height: auto;
    height: 60vw;
    max-height: 350px;
  }
}

/*# sourceMappingURL=content-gallery-mosaic.css.map */
